/* ==========================================================================
   GALA RECEPTION — Design Luxe Haut de Gamme
   Version 4.0 — Élégance classique
   ========================================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette luxe */
  --gold:        #B8953E;
  --gold-light:  #D4B76A;
  --gold-dark:   #96782F;
  --gold-glow:   rgba(184, 149, 62, .3);
  --gold-ultra:  rgba(184, 149, 62, .06);

  --noir:        #1A1714;
  --noir-2:      #1A1714;
  --noir-3:      #231F1A;
  --noir-4:      #2A2520;
  --noir-card:   #1A1714;

  --blanc:       #FAF8F5;
  --blanc-pur:   #FFFFFF;
  --blanc-warm:  #F2EDE8;
  --gris:        #6B6560;
  --gris-clair:  #9A948E;
  --gris-dim:    rgba(26,23,20,.35);
  --gris-faint:  rgba(26,23,20,.06);

  /* Typo luxe */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'Space Mono', 'Courier New', monospace;

  /* Layout */
  --section-pad: clamp(5rem, 9vw, 9rem);
  --container:   min(88%, 1240px);
  --container-wide: min(94%, 1440px);
  --container-narrow: min(88%, 780px);

  /* Timing */
  --ease:         cubic-bezier(.25, .46, .45, .94);
  --ease-out:     cubic-bezier(.16, 1, .3, 1);
  --ease-spring:  cubic-bezier(.34, 1.56, .64, 1);
  --dur:          .35s;
  --dur-slow:     .7s;

  /* Borders */
  --border:       1px solid rgba(184, 149, 62, .2);
  --border-dim:   1px solid rgba(26, 23, 20, .08);
  --border-light: 1px solid rgba(26, 23, 20, .06);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--noir);
  background: var(--blanc);
  line-height: 1.75;
  font-size: 1rem;
}
html { overflow-x: hidden; }

img { max-width: 100%; height: auto; display: block; border-radius: 12px; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ======================================================
   CURSOR CUSTOM (desktop)
   ====================================================== */
@media (hover: hover) and (pointer: fine) {
  * { cursor: none !important; }
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width .2s var(--ease-out), height .2s var(--ease-out), opacity .3s;
  mix-blend-mode: screen;
  will-change: left, top;
}
.cursor-ring {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(212,168,67,.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease-out), height .35s var(--ease-out), border-color .3s, opacity .3s;
  will-change: left, top;
}
.cursor-ring.hovered {
  width: 60px;
  height: 60px;
  border-color: rgba(212,168,67,.9);
  mix-blend-mode: difference;
}
.cursor-ring.clicking { width: 18px; height: 18px; }

/* ======================================================
   TYPOGRAPHY
   ====================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  color: var(--noir);
  letter-spacing: -.02em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1rem, 1.5vw, 1.15rem); font-weight: 600; letter-spacing: .01em; font-family: var(--font-body); }

p { line-height: 1.8; color: var(--gris); font-size: 1rem; }

/* Accent serif pour sous-titres */
.text-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--gris);
  line-height: 1.7;
  letter-spacing: .01em;
}

/* Label / overline */
.section-label {
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title { margin-bottom: 1.5rem; }

/* Gold gradient text */
.text-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-dim { color: var(--gris-clair); }

/* ======================================================
   LAYOUT
   ====================================================== */
.container       { width: var(--container); margin: 0 auto; }
.container--wide { width: var(--container-wide); margin: 0 auto; }
.container--narrow { width: var(--container-narrow); margin: 0 auto; }

section { padding: var(--section-pad) 0; position: relative; }

/* Sections — fond clair par défaut */
.section--warm { background: var(--blanc-warm); }
.section--dark {
  background: var(--noir);
  color: rgba(255,255,255,.85);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--blanc-pur); }
.section--dark p { color: rgba(255,255,255,.55); }
.section--dark .section-label { color: var(--gold-light); }
.section--dark .card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); }
.section--dark .card__title { color: var(--blanc-pur); }
.section--dark .card__text { color: rgba(255,255,255,.5); }
.section--dark .section-label::before { background: var(--gold-light); }

/* Utility */
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ======================================================
   BACKGROUND GRID (futuriste)
   ====================================================== */
.bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.bg-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,168,67,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,67,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
section > .bg-grid + * { position: relative; z-index: 1; }

/* ======================================================
   NOISE TEXTURE
   ====================================================== */
/* Grain subtil — désactivé sur fond clair */

/* ======================================================
   BUTTONS — Futuriste
   ====================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem 2.4rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all var(--dur) var(--ease-out);
  position: relative;
}

.btn--primary {
  background: var(--gold);
  color: var(--noir);
  border: 1px solid var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,149,62,.25);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--noir);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 8px;
}
.btn--ghost:hover {
  color: var(--blanc-pur);
  border-color: var(--blanc-pur);
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}

/* Ghost sur fond clair */
.btn--ghost-light {
  background: transparent;
  color: var(--noir);
  border: 1.5px solid rgba(26,23,20,.2);
  border-radius: 8px;
}
.btn--ghost-light:hover {
  color: var(--noir);
  border-color: var(--noir);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--noir);
  color: var(--blanc-pur);
  border: 1px solid var(--noir);
}
.btn--dark:hover {
  background: transparent;
  color: var(--noir);
  transform: translateY(-2px);
}

/* ======================================================
   HEADER / NAV — Futuriste
   ====================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all .5s var(--ease);
}
.header--transparent { background: transparent; }
.header--scrolled {
  background: rgba(250,248,245,.96);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(26,23,20,.06);
}

/* Ligne dorée en bas du header scrollé */
.header--scrolled::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .15;
}

/* Header scrolled — texte sombre */
.header--scrolled .nav__link { color: rgba(26,23,20,.7); }
.header--scrolled .nav__link:hover { color: var(--noir); }
.header--scrolled .nav__cta { background: var(--gold); color: var(--blanc-pur); border-color: var(--gold); }
.header--scrolled .nav__cta:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.header--scrolled .menu-toggle span { background: var(--noir); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  width: var(--container-wide);
  margin: 0 auto;
  padding-left: clamp(1rem, 3%, 3rem);
  padding-right: clamp(1rem, 3%, 3rem);
  transition: padding .5s var(--ease);
}
.header--scrolled .header__inner { padding-top: .8rem; padding-bottom: .8rem; }

.header__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  transition: opacity var(--dur) var(--ease);
  position: relative;
  z-index: 2;
}
.header__logo:hover { opacity: .8; }
.header__logo img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(212,168,67,.3));
  transition: all .5s var(--ease);
}
.header--scrolled .header__logo img { height: 36px; }

.nav {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}

.nav__link {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gris);
  transition: color var(--dur) var(--ease);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur) var(--ease-out);
  box-shadow: 0 0 8px var(--gold-glow);
}
.nav__link:hover {
  color: var(--noir);
}
.nav__link:hover::after { width: 100%; }

.nav__cta {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .55rem 1.4rem;
  background: var(--gold);
  color: var(--blanc-pur);
  border: 1px solid var(--gold);
  border-radius: 8px;
  transition: all var(--dur) var(--ease-out);
}
.nav__cta:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 4px 15px rgba(184,149,62,.25);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  z-index: 1001;
  position: relative;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--blanc-pur);
  transition: all var(--dur) var(--ease);
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

@media (max-width: 1024px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(85vw, 400px);
    height: 100dvh;
    background: var(--blanc-warm);
    border-left: var(--border);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    transition: right .5s var(--ease-out);
    padding: 2rem 3rem;
  }
  .nav.open { right: 0; box-shadow: -20px 0 60px rgba(0,0,0,.1); }
  .nav__link { font-size: .95rem; color: var(--noir); }
  .nav__cta { margin-top: 1rem; }
}

/* ======================================================
   HERO — Futuriste
   ====================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--noir);
}

.hero__bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 2s var(--ease), transform 14s linear;
  will-change: transform, opacity;
}
.hero.loaded .hero__bg {
  opacity: .38;
  transform: scale(1);
}

/* Vidéo de fond hero */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s var(--ease);
  z-index: 1;
}
.hero.loaded .hero__video { opacity: .55; }

/* Overlay multi-couches */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(5,5,7,.65) 0%, rgba(5,5,7,.05) 30%, rgba(5,5,7,.1) 60%, rgba(5,5,7,.92) 100%),
    radial-gradient(ellipse at 60% 50%, rgba(212,168,67,.05) 0%, transparent 70%);
}

/* Lignes scan horizontales */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,.012) 2px,
    rgba(255,255,255,.012) 4px
  );
  pointer-events: none;
  z-index: 4;
}

/* Grid overlay */
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(212,168,67,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,67,.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

/* Coin décoratif futuriste */
.hero__corner {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.5s var(--ease) .8s;
}
.hero.loaded .hero__corner { opacity: 1; }
.hero__corner--tl { top: 2.5rem; left: 2.5rem; }
.hero__corner--br { bottom: 2.5rem; right: 2.5rem; transform: rotate(180deg); }
.hero__corner svg { width: 60px; height: 60px; }

.hero__content {
  position: relative;
  z-index: 6;
  text-align: center;
  color: var(--blanc-pur);
  max-width: 960px;
  padding: 0 2rem;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
  /* Animation gérée par JS */
}

.hero__title {
  color: var(--blanc-pur);
  margin-bottom: 2rem;
  /* Animation gérée par JS via .title-line__inner */
}
.hero__title em {
  font-style: normal;
  display: block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(.95rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,.6);
  margin-bottom: 3.5rem;
  line-height: 1.8;
  letter-spacing: .02em;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s var(--ease-out) .85s forwards;
}

.hero__actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s var(--ease-out) 1.1s forwards;
}

/* Stats bar en bas du hero */
.hero__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--border);
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.6s forwards;
}
.hero__bar-item {
  padding: 1.5rem 2.5rem;
  border-right: var(--border);
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.hero__bar-item:last-child { border-right: none; }
.hero__bar-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.04em;
}
.hero__bar-label {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 7rem;
  right: 3rem;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.8s forwards;
  writing-mode: vertical-rl;
}
.hero__scroll-text {
  font-family: var(--font-mono);
  font-size: .55rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gris-clair);
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2.5s ease infinite;
}

/* Hero page (inner pages) */
.hero--page {
  min-height: 52vh;
  min-height: 52dvh;
  padding-top: 7rem;
}
.hero--page .hero__bg { opacity: 0; }
.hero--page.loaded .hero__bg { opacity: .3; }
.hero--page .hero__content { max-width: 760px; }

/* ======================================================
   ANIMATIONS KEYFRAMES
   ====================================================== */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%   { transform: scaleY(1);   opacity: .4; }
  50%  { transform: scaleY(1.4); opacity: 1;  transform-origin: top; }
  100% { transform: scaleY(1);   opacity: .4; }
}
@keyframes glitch {
  0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
  20%       { clip-path: inset(10% 0 80% 0); transform: translate(-2px, 1px); }
  40%       { clip-path: inset(60% 0 20% 0); transform: translate(2px, -1px); }
  60%       { clip-path: inset(30% 0 50% 0); transform: translate(-1px, 2px); }
  80%       { clip-path: inset(80% 0 5% 0); transform: translate(1px, -2px); }
}
@keyframes borderGlow {
  0%, 100% { opacity: .3; }
  50%       { opacity: 1;  }
}
@keyframes slideRight {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%);  }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ======================================================
   SCROLL REVEALS — Clip-path style
   ====================================================== */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal         { transform: translateY(50px); }
.reveal-left    { transform: translateX(-60px); }
.reveal-right   { transform: translateX(60px); }
.reveal-scale   { transform: scale(.94); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* Clip-path reveal (wipe upward) */
.clip-reveal {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1s cubic-bezier(.77, 0, .175, 1);
}
.clip-reveal.visible { clip-path: inset(0% 0 0 0); }

/* Split char reveal — chaque lettre via JS */
.split-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%) skewY(8deg);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out);
  transition-delay: calc(var(--char-i, 0) * 0s); /* delay injecté par JS */
}
.split-char.visible {
  opacity: 1;
  transform: none;
}

/* Conteneur overflow pour les chars (cache le translateY) */
.hero__title,
.hero__eyebrow {
  overflow: visible; /* Les spans s'animent hors flow */
}

.reveal-stagger { opacity: 1; }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
.reveal-stagger.visible > * { opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(1)  { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2)  { transition-delay: .08s; }
.reveal-stagger.visible > *:nth-child(3)  { transition-delay: .16s; }
.reveal-stagger.visible > *:nth-child(4)  { transition-delay: .24s; }
.reveal-stagger.visible > *:nth-child(5)  { transition-delay: .32s; }
.reveal-stagger.visible > *:nth-child(6)  { transition-delay: .40s; }
.reveal-stagger.visible > *:nth-child(7)  { transition-delay: .48s; }
.reveal-stagger.visible > *:nth-child(8)  { transition-delay: .56s; }

/* ======================================================
   EFFETS SPÉCIAUX — Parallax, Magnetic, Gradient border
   ====================================================== */

/* Parallax layers (translateY via CSS variable injectée par JS) */
[data-parallax] {
  will-change: transform;
}

/* Animated gold border (conic gradient) */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.gold-border-anim {
  position: relative;
  z-index: 0;
}
.gold-border-anim::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: conic-gradient(
    from var(--angle),
    transparent 0deg,
    var(--gold) 60deg,
    var(--gold-light) 120deg,
    transparent 180deg
  );
  border-radius: inherit;
  animation: rotateBorder 4s linear infinite;
  z-index: -1;
}
.gold-border-anim::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--blanc-pur);
  border-radius: inherit;
  z-index: -1;
}
@keyframes rotateBorder {
  to { --angle: 360deg; }
}

/* Image parallax interne au survol */
.img-parallax {
  overflow: hidden;
  position: relative;
}
.img-parallax img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  transform: translateY(0);
  transition: transform .1s linear;
  will-change: transform;
}

/* Magnetic element (via JS) */
.magnetic {
  display: inline-block;
  transition: transform .4s var(--ease-out);
}

/* Text outline décoratif */
.text-outline {
  -webkit-text-stroke: 1px rgba(212,168,67,.4);
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  letter-spacing: -.04em;
  user-select: none;
  pointer-events: none;
}

/* Marquee / texte défilant */
.marquee-wrap {
  overflow: hidden;
  border-top: var(--border);
  border-bottom: var(--border);
  padding: 1.2rem 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 18s linear infinite;
}
.marquee-track span {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--gris-clair);
  letter-spacing: .05em;
  flex-shrink: 0;
}
.marquee-track span.sep {
  color: var(--gold);
  font-style: normal;
  font-family: var(--font-mono);
  font-size: .7rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Hover tilt effect (via JS) */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform .1s linear;
  will-change: transform;
}
.tilt-card > * {
  transform: translateZ(20px);
}

/* Glow pulse on gold elements */
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(212,168,67,.2), 0 0 40px rgba(212,168,67,.05); }
  50%       { box-shadow: 0 0 30px rgba(212,168,67,.5), 0 0 80px rgba(212,168,67,.15); }
}
.glow-pulse { animation: goldPulse 3s ease infinite; }

/* ======================================================
   BREADCRUMBS
   ====================================================== */
.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gris-clair);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .6s var(--ease-out) .2s forwards;
}
.breadcrumbs a { color: var(--gris); transition: color var(--dur); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs__sep { color: var(--gris-clair); }

/* ======================================================
   SPLIT LAYOUT
   ====================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

@media (max-width: 900px) {
  .split, .split--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* ======================================================
   CARDS — Futuriste
   ====================================================== */
.card {
  background: var(--blanc-pur);
  border: var(--border-light);
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26,23,20,.1);
}

.card__image {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  aspect-ratio: 16/11;
}
.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.card:hover .card__image img {
  transform: scale(1.05);
}

.card__body { padding: 1.8rem 2rem 2.2rem; }

.card__tag {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
  display: block;
}

.card__title {
  margin-bottom: .75rem;
  font-size: 1.35rem;
  transition: color var(--dur) var(--ease);
}
.card:hover .card__title { color: var(--gold-dark); }

.card__text {
  color: var(--gris);
  font-size: .92rem;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.card__link {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .6rem;
  transition: gap var(--dur) var(--ease);
}
.card__link::after {
  content: '→';
  transition: transform var(--dur) var(--ease);
}
.card:hover .card__link { gap: 1rem; }
.card:hover .card__link::after { transform: translateX(4px); }

/* ======================================================
   GRID
   ====================================================== */
.grid { display: grid; gap: 2rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ======================================================
   STATS — Futuriste
   ====================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.stat {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: var(--border);
  position: relative;
  overflow: hidden;
}
.stat:last-child { border-right: none; }

/* Glow au survol */
.stat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--gold-ultra) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.stat:hover::after { opacity: 1; }

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.04em;
  display: block;
}
.stat__number small { font-size: .45em; opacity: .7; }

.stat__label {
  font-family: var(--font-mono);
  font-size: .6rem;
  color: var(--gris-clair);
  margin-top: .8rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  display: block;
}

@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: none; }
}
@media (max-width: 640px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: var(--border); }
  .stat:last-child { border-bottom: none; }
}

/* ======================================================
   FEATURE LIST — Futuriste
   ====================================================== */
.feature-list { display: flex; flex-direction: column; gap: 0; }

.feature-list__item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.4rem 0;
  border-bottom: var(--border-dim);
  position: relative;
  transition: padding-left var(--dur) var(--ease);
}
.feature-list__item:last-child { border-bottom: none; }
.feature-list__item:hover { padding-left: .5rem; }

.feature-list__icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .5rem;
  color: var(--gold);
  margin-top: .15rem;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  
}
.feature-list__item:hover .feature-list__icon {
  background: var(--gold);
  color: var(--blanc-pur);
  box-shadow: 0 4px 15px rgba(184,149,62,.2);
}

.feature-list__content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .3rem;
  color: var(--noir);
}
.feature-list__content p {
  font-size: .88rem;
  color: var(--gris);
  line-height: 1.65;
}

/* ======================================================
   TESTIMONIALS — Futuriste
   ====================================================== */
.testimonial {
  background: var(--blanc-pur);
  border: var(--border-light);
  padding: 2.5rem;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), transform .5s var(--ease-out);
}
.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transform: scaleX(0);
  transition: opacity .5s, transform .6s var(--ease-out);
}
.testimonial:hover {
  border-color: rgba(212,168,67,.2);
  transform: translateY(-4px);
}
.testimonial:hover::before { opacity: 1; transform: scaleX(1); }

.testimonial__quote {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  opacity: .15;
  line-height: 1;
  margin-bottom: .5rem;
}
.testimonial__stars {
  color: var(--gold);
  font-size: .8rem;
  margin-bottom: 1.2rem;
  letter-spacing: .1em;
}
.testimonial__text {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--gris);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial__author {
  font-weight: 600;
  font-size: .85rem;
  color: var(--noir);
}
.testimonial__event {
  font-family: var(--font-mono);
  font-size: .6rem;
  color: var(--gris-clair);
  margin-top: .3rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ======================================================
   FAQ — Futuriste
   ====================================================== */
.faq-item {
  border-bottom: 1px solid rgba(212,168,67,.12);
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .5s var(--ease-out);
  z-index: 1;
}
.faq-item.open::before { width: 100%; }

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: color var(--dur) var(--ease);
  width: 100%;
  text-align: left;
  color: var(--noir);
  letter-spacing: -.02em;
}
.faq-item__question:hover,
.faq-item.open .faq-item__question {
  color: var(--gold-dark);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(184,149,62,.35);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur) var(--ease-out);
  border-radius: 8px;
  margin-left: 1rem;
  position: relative;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: all var(--dur) var(--ease-out);
}
.faq-item__icon::before { width: 10px; height: 1px; }
.faq-item__icon::after  { width: 1px; height: 10px; }

.faq-item.open .faq-item__icon {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}
.faq-item.open .faq-item__icon::before { background: var(--noir); }
.faq-item.open .faq-item__icon::after  { background: var(--noir); transform: scaleY(0); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease-out), padding .4s var(--ease);
}
.faq-item.open .faq-item__answer { max-height: 300px; padding-bottom: 1.5rem; }
.faq-item__answer p {
  color: var(--gris);
  font-size: .92rem;
  line-height: 1.75;
}
.faq-item__answer a { color: var(--gold); transition: opacity var(--dur); }
.faq-item__answer a:hover { opacity: .7; }

/* ======================================================
   MAP
   ====================================================== */
.map-container {
  border-radius: 12px;
  width: 100%;
  min-height: 420px;
  border: none;
  display: block;
  
  transition: filter .5s var(--ease);
}
.map-container:hover {  }

/* ======================================================
   GALLERY GRID — Futuriste
   ====================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.gallery-grid__item {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  background: var(--blanc-warm);
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out), filter .5s var(--ease);
  
}
.gallery-grid__item:hover img {
  transform: scale(1.1);
  
}

/* Overlay futuriste au hover */
.gallery-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,149,62,.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  z-index: 1;
}
.gallery-grid__item:hover::after { opacity: 1; }

/* Ligne coin */
.gallery-grid__item::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  width: 20px;
  height: 20px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  opacity: 0;
  transition: opacity .4s var(--ease) .1s;
  z-index: 2;
}
.gallery-grid__item:hover::before { opacity: 1; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ======================================================
   LIGHTBOX
   ====================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,5,7,.97);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
  backdrop-filter: blur(8px);
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox__img {
  border-radius: 10px;
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border: var(--border);
  transform: scale(.95);
  transition: transform .4s var(--ease-out);
}
.lightbox.active .lightbox__img {
  border-radius: 10px; transform: scale(1); }
.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  width: 40px;
  height: 40px;
  border: var(--border);
  color: var(--noir);
  font-size: 1.2rem;
  display: flex;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  transition: all var(--dur) var(--ease);
  
}
.lightbox__close:hover {
  background: var(--gold);
  color: var(--noir);
  border-color: var(--gold);
}

/* ======================================================
   FORM — Futuriste
   ====================================================== */
.form { display: grid; gap: 1.2rem; }
.form--2col { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) { .form--2col { grid-template-columns: 1fr; } }

.form__group { display: flex; flex-direction: column; gap: .5rem; }
.form__group--full { grid-column: 1 / -1; }

.form__label {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gris-clair);
}

.form__input,
.form__select,
.form__textarea {
  background: var(--blanc-warm);
  border: 1px solid rgba(212,168,67,.15);
  color: var(--noir);
  padding: .9rem 1.2rem;
  font-family: var(--font-body);
  font-size: .9rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  border-radius: 8px;
  outline: none;
  
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 0 20px rgba(212,168,67,.1);
}
.form__input::placeholder { color: var(--gris-clair); }
.form__textarea {
  min-height: 150px;
  resize: vertical;
  
}
.form__select option { background: var(--blanc-warm); }

/* ======================================================
   CTA BAND — Futuriste
   ====================================================== */
.cta-band {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  background: var(--noir);
  color: var(--blanc-pur);
}

/* Glow background */
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212,168,67,.06) 0%, transparent 100%);
  pointer-events: none;
}

/* Lignes diagonales */
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(212,168,67,.015) 30px,
    rgba(212,168,67,.015) 31px
  );
  pointer-events: none;
}

.cta-band .container { position: relative; z-index: 1; text-align: center; }
.cta-band__title {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1.2rem;
  letter-spacing: -.04em;
  color: var(--blanc-pur);
}
.cta-band__text {
  font-size: 1rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 3rem;
  font-family: var(--font-accent);
  font-style: italic;
  letter-spacing: .02em;
}
.cta-band__actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ======================================================
   SECTION : IMAGE FULL WIDTH
   ====================================================== */
.fullwidth-img {
  position: relative;
  height: 55vh;
  overflow: hidden;
  border-radius: 8px;
}
.fullwidth-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7) brightness(.65);
}
.fullwidth-img__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,7,.8) 0%, transparent 40%, transparent 60%, rgba(5,5,7,.8) 100%),
    radial-gradient(ellipse at 50% 50%, rgba(212,168,67,.04) 0%, transparent 70%);
}

/* ======================================================
   GOLD LINE DIVIDER
   ====================================================== */
.gold-line {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0 2rem;
}

/* ======================================================
   PROCESS STEPS
   ====================================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: var(--border);
  margin-top: 3rem;
}
.process-step {
  padding: 2.5rem 2rem;
  border-right: var(--border);
  position: relative;
  overflow: hidden;
  transition: background var(--dur) var(--ease);
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--gold-ultra); }

.process-step__num {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .2em;
  color: var(--gold);
  opacity: .5;
  margin-bottom: 1.2rem;
  display: block;
}
.process-step h4 {
  font-size: 1.05rem;
  margin-bottom: .75rem;
  color: var(--noir);
}
.process-step p {
  font-size: .85rem;
  color: var(--gris-clair);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(1),
  .process-step:nth-child(2) { border-bottom: var(--border); }
}
@media (max-width: 640px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: var(--border); }
  .process-step:last-child { border-bottom: none; }
}

/* ======================================================
   FOOTER — Futuriste
   ====================================================== */
.footer {
  background: var(--noir);
  border-top: var(--border);
  padding: 5rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: var(--border-dim);
}

.footer__brand img {
  filter: drop-shadow(0 0 12px rgba(212,168,67,.25));
}

.footer__desc {
  font-size: .88rem;
  color: rgba(255,255,255,.4);
  margin-top: 1rem;
  line-height: 1.75;
}

.footer__heading {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.footer__links { display: flex; flex-direction: column; gap: .7rem; }
.footer__links a {
  font-size: .88rem;
  color: rgba(255,255,255,.4);
  transition: color var(--dur) var(--ease);
}
.footer__links a:hover { color: var(--gold); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  margin-bottom: .9rem;
  font-size: .88rem;
  color: rgba(255,255,255,.4);
}
.footer__contact-icon {
  color: var(--gold);
  font-size: .5rem;
  flex-shrink: 0;
  margin-top: .35rem;
}
.footer__contact-item a {
  color: rgba(255,255,255,.5);
  transition: color var(--dur);
}
.footer__contact-item a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,.25);
  text-transform: uppercase;
}

.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social a {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gris-clair);
  padding: .5rem .9rem;
  border: 1px solid rgba(255,255,255,.12);
  transition: all var(--dur) var(--ease);
  border-radius: 8px;
}
.footer__social a:hover {
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ======================================================
   SECTION PRESTATIONS (homepage)
   ====================================================== */
.prestation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(212,168,67,.15);
  border: var(--border);
  margin-top: 3rem;
}
.prestation-item {
  background: var(--blanc-pur);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background var(--dur) var(--ease), box-shadow .4s var(--ease);
}
.prestation-item:hover { background: var(--blanc); box-shadow: 0 10px 40px rgba(26,23,20,.06); }

.prestation-item__num {
  font-family: var(--font-mono);
  font-size: .55rem;
  letter-spacing: .3em;
  color: var(--gold);
  opacity: .4;
  margin-bottom: 2rem;
}
.prestation-item__icon {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 8px var(--gold-glow));
}
.prestation-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: -.03em;
}
.prestation-item p {
  font-size: .88rem;
  color: var(--gris);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.prestation-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width .6s var(--ease-out);
}
.prestation-item:hover::after { width: 100%; }

@media (max-width: 900px) {
  .prestation-grid { grid-template-columns: 1fr; }
}

/* ======================================================
   TEXTE + IMAGE SPLIT (pages internes)
   ====================================================== */
.img-frame {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  
  transition: filter .5s var(--ease);
}
.img-frame:hover img {  }

/* Cadre décoratif */
.img-frame::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 1px solid rgba(212,168,67,.2);
  pointer-events: none;
  z-index: 1;
}

/* Scan line */
.img-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,.08), transparent);
  z-index: 2;
  animation: scanLine 4s ease-in-out infinite;
}
@keyframes scanLine {
  0%   { left: -50%; }
  100% { left: 150%;  }
}

/* Coin doré */
.img-frame__corner {
  position: absolute;
  z-index: 3;
}
.img-frame__corner--tl {
  top: 12px;
  left: 12px;
  width: 28px;
  height: 28px;
  border-top: 1.5px solid var(--gold);
  border-left: 1.5px solid var(--gold);
}
.img-frame__corner--br {
  bottom: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-bottom: 1.5px solid var(--gold);
  border-right: 1.5px solid var(--gold);
}

/* ======================================================
   SECTION : GALERIE HOMEPAGE (dark)
   ====================================================== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.gallery-strip > div {
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-strip > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
  transition: all .8s var(--ease-out);
}
.gallery-strip > div:hover img {
  
  transform: scale(1.07);
}

@media (max-width: 640px) {
  .gallery-strip { grid-template-columns: 1fr 1fr; }
}

/* ======================================================
   LABEL NUMÉROTÉ
   ====================================================== */
.numbered-label {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gris-clair);
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.numbered-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.07);
}

/* ======================================================
   SCROLL-DRIVEN VIDEO
   ====================================================== */
.sv-text {
  position: fixed;
  z-index: 3;
  opacity: 0;
  will-change: transform, opacity;
  pointer-events: none;
  max-width: 700px;
  color: var(--blanc-pur);
}
.sv-text h1, .sv-text h2 {
  color: var(--blanc-pur);
  text-shadow: 0 2px 40px rgba(0,0,0,.6);
}
.sv-text p {
  color: rgba(255,255,255,.65);
}
.sv-text.left {
  left: 8%;
  bottom: 18%;
  text-align: left;
}
.sv-text.right {
  right: 8%;
  bottom: 18%;
  text-align: right;
}
.sv-text.center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.sv-eyebrow {
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.2rem;
}

.sv-sub {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  margin-top: 1rem;
  line-height: 1.7;
  letter-spacing: .01em;
}

@media (max-width: 768px) {
  .sv-text { max-width: 90%; }
  .sv-text.left, .sv-text.right {
    left: 5%;
    right: auto;
    bottom: 12%;
    text-align: left;
  }
  .sv-text.center {
    left: 50%;
    width: 90%;
  }
}

/* ======================================================
   RESPONSIVE GLOBAL
   ====================================================== */
@media (max-width: 900px) {
  :root { --section-pad: clamp(4rem, 8vw, 6rem); }

  .hero__bar { display: none; }
  .hero__scroll { display: none; }

  .hero--page { min-height: 45vh; }
}

@media (max-width: 640px) {
  :root { --section-pad: 4rem; }
  h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  h2 { font-size: clamp(1.7rem, 7vw, 2.5rem); }

  .btn {
    
  }
}
