/* ========================================================================
   NC Coiffure Beauté & Bien-être — Direction 2026 "Spa Aman meets Aesop"
   Palette : eucalyptus #7A8B7E · or rose mat #C9A682 · papier japonais #F4F1EC
   ======================================================================== */

:root {
  /* Palette signature (non-négociable) */
  --color-bg: #F4F1EC;
  --color-bg-elevated: #FFFFFF;
  --color-bg-deep: #E8E2D8;
  --color-text: #1C1E1D;
  --color-text-muted: #5C5E5B;
  --color-accent: #7A8B7E;
  --color-accent-2: #C9A682;
  --color-accent-deep: #3A4842;

  /* Mesh gradient signature */
  --gradient-mesh: conic-gradient(from 180deg at 50% 50%,
    #F4F1EC 0%, #E8E2D8 12%, #C9A682 22%,
    #7A8B7E 38%, #F4F1EC 58%, #E8E2D8 78%, #F4F1EC 100%);
  --gradient-accent: linear-gradient(135deg, #C9A682 0%, #7A8B7E 100%);

  /* Typography */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-signature: 'Pinyon Script', cursive;

  /* Shadows */
  --shadow-elevation-1: 0 2px 8px rgba(28, 30, 29, 0.04);
  --shadow-elevation-2: 0 8px 32px rgba(28, 30, 29, 0.08);
  --shadow-elevation-3: 0 24px 80px rgba(28, 30, 29, 0.12);
  --shadow-glass: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 8px 32px rgba(28, 30, 29, 0.06);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Easing & duration */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --duration-fast: 200ms;
  --duration-mid: 480ms;
  --duration-slow: 880ms;

  /* Layout */
  --container: 1320px;
  --container-narrow: 980px;
  --space-section: clamp(5rem, 10vw, 9rem);
}

/* =========================================================================
   Reset & base
   ========================================================================= */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "liga", "dlig", "kern";
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, picture, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out-quart);
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

p { margin: 0; }

::selection {
  background: var(--color-accent-2);
  color: var(--color-bg-elevated);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-accent-deep);
  color: var(--color-bg);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--gradient-accent);
  z-index: 999;
  transition: width 40ms linear;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
  margin-left: auto;
  margin-right: auto;
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
  margin-left: auto;
  margin-right: auto;
}

/* Section primitives */
section {
  position: relative;
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

.overline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}
.overline::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--color-accent);
  vertical-align: middle;
  margin-right: 14px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}

.section-lede {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--color-text-muted);
  max-width: 56ch;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--duration-mid) var(--ease-out-expo);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-accent-deep);
  color: var(--color-bg);
  border: 1px solid var(--color-accent-deep);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-accent);
  transform: translateY(102%);
  transition: transform var(--duration-mid) var(--ease-out-expo);
  z-index: 0;
}
.btn-primary > * { position: relative; z-index: 1; }
@media (hover: hover) {
  .btn-primary:hover { color: #fff; border-color: transparent; }
  .btn-primary:hover::before { transform: translateY(0); }
}

.btn-gold {
  background: var(--color-accent-2);
  color: #fff;
  border: 1px solid var(--color-accent-2);
}
.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-accent-deep);
  transform: translateY(102%);
  transition: transform var(--duration-mid) var(--ease-out-expo);
  z-index: 0;
}
.btn-gold > * { position: relative; z-index: 1; }
@media (hover: hover) {
  .btn-gold:hover::before { transform: translateY(0); }
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(28, 30, 29, 0.2);
}
.btn-ghost.btn-ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
@media (hover: hover) {
  .btn-ghost:hover {
    background: var(--color-text);
    color: var(--color-bg);
    border-color: var(--color-text);
  }
  .btn-ghost-light:hover {
    background: #fff;
    color: var(--color-text);
    border-color: #fff;
  }
}

.btn .arrow {
  display: inline-block;
  transition: transform var(--duration-mid) var(--ease-out-expo);
}
.btn:hover .arrow { transform: translateX(4px); }

/* Custom cursor (desktop only) */
.cursor-dot,
.cursor-ring {
  display: none;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  border-radius: 50%;
  transition: width var(--duration-mid) var(--ease-out-expo),
              height var(--duration-mid) var(--ease-out-expo),
              opacity var(--duration-fast);
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: #F4F1EC;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(244, 241, 236, 0.6);
  transform: translate(-50%, -50%);
}
.cursor-ring.is-hover {
  width: 80px;
  height: 80px;
  border-color: var(--color-accent-2);
}

@media (pointer: fine) and (hover: hover) {
  .cursor-dot, .cursor-ring { display: block; }
  body { cursor: none; }
  a, button, .nav-link, .price-row, .gallery-item { cursor: none; }
}

/* =========================================================================
   Navigation glass
   ========================================================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(244, 241, 236, 0.7);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(28, 30, 29, 0.06);
  transition: all var(--duration-mid) var(--ease-out-expo);
}

.nav.is-scrolled {
  padding: 12px 0;
  background: rgba(244, 241, 236, 0.92);
  box-shadow: var(--shadow-elevation-1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.nav-logo svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.nav-logo svg path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLogo 1.6s var(--ease-out-expo) 0.3s forwards;
}
.nav-logo .logo-text-small {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-top: 2px;
}

@keyframes drawLogo {
  to { stroke-dashoffset: 0; }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 38px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--duration-mid) var(--ease-out-expo);
}
@media (hover: hover) {
  .nav-link:hover { color: var(--color-accent); }
  .nav-link:hover::after { width: 100%; }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.lang-switch button {
  padding: 4px 6px;
  color: var(--color-text-muted);
  transition: color var(--duration-fast);
}
.lang-switch button.active {
  color: var(--color-text);
  font-weight: 600;
}
.lang-switch .divider {
  color: var(--color-text-muted);
  opacity: 0.4;
}

.nav-cta {
  display: none;
}

.nav-cta-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-accent-deep);
  color: #fff;
  transition: all var(--duration-mid) var(--ease-out-expo);
}
@media (hover: hover) {
  .nav-cta-mobile:hover {
    background: var(--color-accent-2);
    transform: scale(1.06);
  }
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 28px;
  height: 28px;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  transition: transform var(--duration-mid) var(--ease-out-expo), opacity var(--duration-fast);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 99;
  padding: 100px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform var(--duration-mid) var(--ease-out-expo);
  visibility: hidden;
}
.nav-mobile.is-open {
  transform: translateX(0);
  visibility: visible;
}
.nav-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-mobile ul li {
  border-bottom: 1px solid rgba(28, 30, 29, 0.08);
}
.nav-mobile ul a {
  display: block;
  padding: 22px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  font-weight: 300;
}

/* =========================================================================
   Hero
   ========================================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-accent-deep);
}

.hero-video,
.hero-video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video-fallback {
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 30, 29, 0.7) 0%,
    rgba(28, 30, 29, 0.25) 45%,
    rgba(28, 30, 29, 0.05) 70%,
    rgba(28, 30, 29, 0.15) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 clamp(20px, 5vw, 64px) clamp(60px, 10vh, 120px);
  color: var(--color-bg);
}

.hero-overline {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-accent-2);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 1s var(--ease-out-expo) 0.6s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 7.5rem);
  font-weight: 400;
  font-style: normal;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  max-width: 16ch;
}
.hero-title .italic {
  font-style: italic;
  font-weight: 300;
  color: var(--color-accent-2);
  display: block;
  font-size: 0.55em;
  letter-spacing: 0.04em;
  margin-bottom: 0.3em;
  opacity: 0.95;
}
.hero-title .name {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFade 1.2s var(--ease-out-expo) 0.9s forwards;
}
.hero-title .italic {
  opacity: 0;
  transform: translateY(40px);
  animation: heroFade 1.2s var(--ease-out-expo) 0.7s forwards;
}

.hero-lede {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  max-width: 42ch;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 1s var(--ease-out-expo) 1.1s forwards;
  color: rgba(244, 241, 236, 0.88);
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 1s var(--ease-out-expo) 1.3s forwards;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(244, 241, 236, 0.6);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: heroFade 1.5s var(--ease-out-expo) 1.8s forwards;
}
.hero-scroll-cue::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--color-accent-2), transparent);
  animation: scrollPulse 2.2s var(--ease-out-quart) infinite;
}

@keyframes heroFade {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================================================
   Strip Reviews (Google)
   ========================================================================= */

.strip-reviews {
  padding: 36px 0;
  background: var(--color-bg-elevated);
  border-bottom: 1px solid rgba(122, 139, 126, 0.18);
  overflow: hidden;
}

.strip-reviews-inner {
  display: flex;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
}

.strip-rating {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  padding-right: clamp(24px, 4vw, 56px);
  border-right: 1px solid rgba(28, 30, 29, 0.1);
}

.strip-rating-stars {
  display: flex;
  gap: 2px;
  color: var(--color-accent-2);
}

.strip-rating-score {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.strip-rating-count {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 80s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--color-text-muted);
  font-style: italic;
  white-space: nowrap;
}
.marquee-item::before {
  content: "★";
  color: var(--color-accent-2);
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* =========================================================================
   Section "Le lieu" — parallax
   ========================================================================= */

.le-lieu {
  position: relative;
  overflow: hidden;
}
.le-lieu::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 65%);
  opacity: 0.1;
  filter: blur(60px);
  z-index: 0;
}

.le-lieu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.le-lieu-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-elevation-3);
  will-change: transform;
}
.le-lieu-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.le-lieu-visual-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 14px 20px;
  background: rgba(244, 241, 236, 0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-pill);
  font-family: var(--font-signature);
  font-size: 26px;
  color: var(--color-accent-deep);
  line-height: 1;
}

.le-lieu-text {
  will-change: transform;
}

.le-lieu-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.le-lieu-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.le-lieu-list li::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--color-accent);
}

/* Counters */
.counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(28, 30, 29, 0.08);
}

.counter-value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-accent-deep);
}
.counter-value .unit {
  font-size: 0.5em;
  color: var(--color-accent);
  margin-left: 4px;
}

.counter-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 8px;
}

/* =========================================================================
   Prestations — grid
   ========================================================================= */

.prestations {
  background: var(--color-bg-elevated);
  position: relative;
}

.prestations-head {
  text-align: center;
  margin-bottom: 4rem;
}
.prestations-head .section-title { margin-left: auto; margin-right: auto; }
.prestations-head .section-lede { margin-left: auto; margin-right: auto; }
.prestations-head .overline::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--color-accent);
  vertical-align: middle;
  margin-left: 14px;
}

.prestations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.prestation-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-bg-deep);
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-elevation-1);
  transition: transform var(--duration-mid) var(--ease-out-expo), box-shadow var(--duration-mid);
}

.prestation-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out-expo);
}

.prestation-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 30, 29, 0.72) 0%, rgba(28, 30, 29, 0.1) 55%, transparent 100%);
  transition: opacity var(--duration-mid);
}

.prestation-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  color: #fff;
  z-index: 2;
}

.prestation-card-overline {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-accent-2);
  margin-bottom: 12px;
  display: block;
}

.prestation-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 14px;
}

.prestation-card-text {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.86;
  margin-bottom: 18px;
  max-width: 32ch;
}

.prestation-card-price {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: var(--color-accent-2);
  letter-spacing: 0.04em;
}

@media (hover: hover) {
  .prestation-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevation-3);
  }
  .prestation-card:hover img {
    transform: scale(1.08);
  }
}

.prestations-foot {
  margin-top: 3rem;
  text-align: center;
}

.link-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--color-accent-deep);
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 4px;
  transition: all var(--duration-mid) var(--ease-out-expo);
}
@media (hover: hover) {
  .link-italic:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent-2);
  }
}

/* =========================================================================
   Showreel (2nd video)
   ========================================================================= */

.showreel {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

.showreel::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: var(--gradient-mesh);
  opacity: 0.32;
  filter: blur(40px);
  animation: meshRotate 60s linear infinite;
  z-index: 0;
}

@keyframes meshRotate {
  to { transform: rotate(360deg) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .showreel::before { animation: none; }
}

.showreel-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.showreel-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--color-accent-deep);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-elevation-3),
              0 0 0 12px rgba(255, 255, 255, 0.5),
              0 0 0 13px rgba(122, 139, 126, 0.15);
}

.showreel-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showreel-caption {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  color: var(--color-text-muted);
  font-weight: 300;
  letter-spacing: -0.01em;
}

.showreel-caption::before {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--color-accent);
  margin: 0 auto 1.5rem;
}

/* =========================================================================
   Carte tarifs (accordion)
   ========================================================================= */

.tarifs {
  position: relative;
  background: var(--color-bg);
}

.tarifs-head {
  text-align: center;
  margin-bottom: 3rem;
}
.tarifs-head .section-title { margin-left: auto; margin-right: auto; }
.tarifs-head .overline::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--color-accent);
  vertical-align: middle;
  margin-left: 14px;
}

.accordion {
  max-width: 920px;
  margin: 0 auto;
}

.acc-item {
  border-top: 1px solid rgba(28, 30, 29, 0.12);
}
.acc-item:last-child { border-bottom: 1px solid rgba(28, 30, 29, 0.12); }

.acc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 12px;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text);
  transition: color var(--duration-fast);
}

.acc-toggle-num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-right: 32px;
  display: inline-block;
  width: 32px;
  font-style: normal;
}

.acc-toggle-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(28, 30, 29, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all var(--duration-mid) var(--ease-out-expo);
}
.acc-toggle-icon::before,
.acc-toggle-icon::after {
  content: "";
  position: absolute;
  background: var(--color-text);
  transition: transform var(--duration-mid) var(--ease-out-expo);
}
.acc-toggle-icon::before {
  width: 14px;
  height: 1px;
}
.acc-toggle-icon::after {
  width: 1px;
  height: 14px;
}
.acc-item.is-open .acc-toggle-icon {
  background: var(--color-accent-deep);
  border-color: var(--color-accent-deep);
}
.acc-item.is-open .acc-toggle-icon::before,
.acc-item.is-open .acc-toggle-icon::after {
  background: var(--color-bg);
}
.acc-item.is-open .acc-toggle-icon::after {
  transform: scaleY(0);
}

.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out-expo);
}

.acc-content-inner {
  padding: 0 12px 32px 70px;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(122, 139, 126, 0.22);
  transition: padding-left var(--duration-mid) var(--ease-out-expo);
}
@media (hover: hover) {
  .price-row:hover {
    padding-left: 12px;
  }
}

.price-row:last-child { border-bottom: none; }

.price-row-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
}
.price-row-meta {
  display: block;
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  margin-top: 4px;
  font-weight: 400;
}

.price-row-amount {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent-deep);
  white-space: nowrap;
}

.acc-footer-note {
  margin-top: 2.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================================
   Ambiance — masonry gallery
   ========================================================================= */

.ambiance {
  background: var(--color-bg-elevated);
  position: relative;
}

.ambiance-head {
  margin-bottom: 4rem;
  max-width: 700px;
}

.ambiance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--color-bg-deep);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out-expo);
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(28, 30, 29, 0.4) 100%);
  opacity: 0;
  transition: opacity var(--duration-mid);
}

.gallery-caption {
  position: absolute;
  bottom: 16px;
  left: 18px;
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--duration-mid) var(--ease-out-expo);
  z-index: 2;
}

@media (hover: hover) {
  .gallery-item:hover img { transform: scale(1.06); }
  .gallery-item:hover::after { opacity: 1; }
  .gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28, 30, 29, 0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vw;
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-md);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(244, 241, 236, 0.1);
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================================
   Témoignages
   ========================================================================= */

.testimonials {
  background: var(--color-bg);
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 15%;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-accent-2) 0%, transparent 65%);
  opacity: 0.12;
  filter: blur(80px);
  z-index: 0;
}

.testimonials-inner { position: relative; z-index: 1; }

.testimonials-head {
  margin-bottom: 4rem;
  max-width: 700px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonial {
  background: var(--color-bg-elevated);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-elevation-1);
  border: 1px solid rgba(122, 139, 126, 0.12);
  transition: all var(--duration-mid) var(--ease-out-expo);
}

@media (hover: hover) {
  .testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevation-2);
    border-color: rgba(122, 139, 126, 0.3);
  }
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--color-accent-2);
  margin-bottom: 20px;
  font-size: 14px;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(28, 30, 29, 0.08);
}

.testimonial-author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.testimonial-author-meta {
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

/* =========================================================================
   CTA full-bleed
   ========================================================================= */

.cta-bleed {
  position: relative;
  overflow: hidden;
  background: var(--color-accent-deep);
  color: var(--color-bg);
  text-align: center;
}

.cta-bleed::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: var(--gradient-mesh);
  opacity: 0.5;
  filter: blur(30px);
  animation: meshRotate 80s linear infinite reverse;
  z-index: 0;
}
.cta-bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58, 72, 66, 0.6) 0%, rgba(58, 72, 66, 0.85) 100%);
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  .cta-bleed::before { animation: none; }
}

.cta-bleed-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.cta-bleed .overline { color: var(--color-accent-2); }

.cta-bleed-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.cta-bleed-lede {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: rgba(244, 241, 236, 0.85);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-bleed-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.cta-bleed-status {
  margin-top: 2.5rem;
  font-size: 13px;
  color: rgba(244, 241, 236, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6FB585;
  box-shadow: 0 0 0 4px rgba(111, 181, 133, 0.25);
  animation: statusPulse 2s ease-in-out infinite;
}
.status-dot.is-closed {
  background: #C77B62;
  box-shadow: 0 0 0 4px rgba(199, 123, 98, 0.25);
}

@keyframes statusPulse {
  50% { box-shadow: 0 0 0 8px rgba(111, 181, 133, 0.1); }
}

/* =========================================================================
   Footer
   ========================================================================= */

.footer {
  background: var(--color-bg-deep);
  color: var(--color-text);
  padding: 80px 0 0;
  border-top: 1px solid rgba(28, 30, 29, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.footer-brand-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 16px;
  max-width: 26ch;
}

.footer-signature {
  font-family: var(--font-signature);
  font-size: 38px;
  color: var(--color-accent-2);
  line-height: 1;
  display: block;
  margin-top: 24px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list a {
  font-size: 14px;
  color: var(--color-text);
  transition: color var(--duration-fast);
}
@media (hover: hover) {
  .footer-list a:hover { color: var(--color-accent); }
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(28, 30, 29, 0.06);
  letter-spacing: 0.02em;
}
.footer-hours-row.is-today {
  color: var(--color-accent-deep);
  font-weight: 600;
}
.footer-hours-row.is-today::before {
  content: "→";
  margin-right: 8px;
  color: var(--color-accent);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-elevated);
  color: var(--color-text);
  border: 1px solid rgba(28, 30, 29, 0.08);
  transition: all var(--duration-mid) var(--ease-out-expo);
}
@media (hover: hover) {
  .footer-social a:hover {
    background: var(--color-accent-deep);
    color: #fff;
    border-color: var(--color-accent-deep);
    transform: translateY(-3px);
  }
}

.footer-map {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 60px;
  border: 1px solid rgba(28, 30, 29, 0.08);
  filter: grayscale(20%) contrast(0.95);
}
.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-newsletter {
  background: var(--color-bg-elevated);
  padding: 32px;
  border-radius: var(--radius-md);
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(28, 30, 29, 0.06);
}

.footer-newsletter h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-newsletter input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(28, 30, 29, 0.14);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--color-bg);
  color: var(--color-text);
}
.footer-newsletter input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 0;
  border-top: 1px solid rgba(28, 30, 29, 0.08);
  text-align: center;
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.footer-bottom a {
  color: var(--color-text-muted);
  border-bottom: 1px solid transparent;
  transition: all var(--duration-fast);
}
.footer-bottom a:hover { color: var(--color-accent); border-bottom-color: var(--color-accent); }

.footer-bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================================================================
   Sticky mobile bottom bar
   ========================================================================= */

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(244, 241, 236, 0.92);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-top: 1px solid rgba(28, 30, 29, 0.1);
  box-shadow: 0 -8px 24px rgba(28, 30, 29, 0.04);
}

.sticky-bar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-elevated);
  border: 1px solid rgba(28, 30, 29, 0.1);
  color: var(--color-text);
  flex-shrink: 0;
  transition: all var(--duration-fast);
}
.sticky-bar-icon svg { width: 20px; height: 20px; }

.sticky-bar-cta {
  flex: 1;
  height: 48px;
  border-radius: var(--radius-pill);
  background: var(--color-accent-deep);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =========================================================================
   Animations on scroll (reveal)
   ========================================================================= */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  .hero-overline, .hero-title .name, .hero-title .italic, .hero-lede, .hero-ctas, .hero-scroll-cue { opacity: 1; transform: none; animation: none; }
  .marquee-track { animation: none; }
  * { scroll-behavior: auto; }
}

/* =========================================================================
   Lang switch — show/hide blocks (scoped to content, not the switch itself)
   ========================================================================= */

/* Hide EN content by default (FR is default lang) — exclude lang-switch buttons */
[data-lang="en"]:not(.lang-switch *) { display: none; }
html[lang="en"] [data-lang="en"]:not(.lang-switch *) { display: revert; }
html[lang="en"] [data-lang="fr"]:not(.lang-switch *) { display: none; }

/* =========================================================================
   Responsive — tablet 768px+
   ========================================================================= */

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-cta { display: inline-flex; }
  .nav-cta-mobile { display: none; }

  .le-lieu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .le-lieu-text { padding-right: 20px; }

  .prestations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ambiance-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
  }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.wide.large { grid-column: span 2; }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial:nth-child(odd) { transform: translateY(28px); }
  .testimonial:hover:nth-child(odd) { transform: translateY(24px); }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 56px;
  }

  .footer-newsletter {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 40px 48px;
  }

  .footer-newsletter-form {
    flex-direction: row;
    flex: 0 0 56%;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .sticky-bar {
    display: none;
  }

  .counters { gap: 40px; }
}

/* =========================================================================
   Responsive — desktop 1024px+
   ========================================================================= */

@media (min-width: 1024px) {
  .container { padding-left: 64px; padding-right: 64px; }

  .hero-content {
    padding-bottom: clamp(80px, 12vh, 160px);
  }

  .ambiance-grid {
    grid-auto-rows: 320px;
    gap: 18px;
  }
}

/* =========================================================================
   ÉQUIPE — Nathalie + Laura
   ========================================================================= */
.equipe {
  padding: var(--space-section) 0;
  background: var(--color-bg-alt);
  position: relative;
}
.equipe::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-line), transparent);
}
.equipe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: clamp(40px, 6vw, 60px);
}
@media (min-width: 768px) {
  .equipe-grid { grid-template-columns: 1fr 1fr; }
}
.equipe-card {
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 400ms;
  overflow: hidden;
}
.equipe-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
}
@media (hover: hover) {
  .equipe-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevation-2);
  }
}
.equipe-card-body { display: flex; flex-direction: column; gap: 16px; }
.equipe-card-overline {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-deep);
  font-weight: 500;
}
.equipe-card-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-text);
  line-height: 1;
  margin: 0;
}
.equipe-card-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
}
.equipe-card-specs {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--color-line);
  padding-top: 18px;
}
.equipe-card-specs li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
  color: var(--color-text);
  font-weight: 500;
}
.equipe-card-specs li::before {
  content: "·";
  color: var(--color-accent);
  font-size: 20px;
  line-height: 0;
}

/* =========================================================================
   Print
   ========================================================================= */
@media print {
  .nav, .sticky-bar, .hero-video, .scroll-progress, .cursor-dot, .cursor-ring { display: none !important; }
  body { background: #fff; color: #000; }
}
