/* ============================================
   GCRAFT — Agence Numérique
   Site multi-pages — Styles principaux
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Manrope:wght@300;400;500;600;700&display=swap');

/* --- Variables CSS --- */
:root {
  --gold: #e6c400;
  --gold-dark: #a18300;
  --gold-light: #f5e066;
  --gold-gradient: linear-gradient(135deg, #e6c400, #a18300);
  --black: #000000;
  --white: #ffffff;
  --off-white: #f5f3ee;
  --grey: #888888;
  --grey-light: #cccccc;
  --grey-dark: #1a1a1a;

  --font-display: 'Syne', sans-serif;
  --font-body: 'Manrope', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

  --header-height: 80px;
  --section-padding: clamp(60px, 8vh, 100px);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}

body.loading {
  overflow: hidden;
  height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

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

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

/* --- Curseur personnalisé --- */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  border-radius: 50%;
  mix-blend-mode: difference;
  will-change: transform;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out-expo),
              height 0.3s var(--ease-out-expo),
              background 0.3s;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out-expo),
              height 0.4s var(--ease-out-expo),
              border-color 0.3s,
              background 0.3s;
}

.cursor-dot.hover {
  width: 60px;
  height: 60px;
  background: var(--gold);
}

.cursor-outline.hover {
  width: 80px;
  height: 80px;
  border-color: var(--gold);
  opacity: 0.3;
}

@media (hover: none) and (pointer: coarse) {
  .cursor-dot,
  .cursor-outline {
    display: none;
  }
}

/* --- Texture grain --- */
.grain-overlay {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ============================================
   LOADER — Animation spectaculaire
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loader.done {
  animation: loaderExit 1s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes loaderExit {
  0% { clip-path: circle(100% at 50% 50%); }
  100% { clip-path: circle(0% at 50% 50%); }
}

/* Logo preload */
.loader-logo {
  position: relative;
  z-index: 2;
  width: clamp(80px, 15vw, 120px);
  opacity: 0;
  animation: loaderFadeIn 0.5s ease-out forwards;
}

.loader-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: loaderLogoPulse 1s 0.3s ease-in-out infinite;
}

@keyframes loaderFadeIn {
  0% { opacity: 0; transform: scale(0.7); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes loaderLogoPulse {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(230, 196, 0, 0.2)); }
  50% { filter: drop-shadow(0 0 50px rgba(230, 196, 0, 0.6)); }
}

/* Ligne dorée qui charge sous le logo */
.loader-logo::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 10%;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
  animation: loaderLineGrow 1s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes loaderLineGrow {
  0% { width: 0; opacity: 0; }
  20% { opacity: 1; }
  100% { width: 80%; opacity: 1; }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 60px);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(230, 196, 0, 0.1);
}

.header-logo {
  z-index: 102;
  display: flex;
  align-items: center;
}

.header-logo-img {
  height: clamp(32px, 4vw, 48px);
  width: auto;
}

/* Navigation desktop */
.header-nav {
  display: none;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

.header-nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}

.header-nav a:hover::after,
.header-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--gold);
}

/* Bouton hamburger */
.menu-toggle {
  z-index: 102;
  display: flex !important;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 8px 0;
  background: none;
  border: none;
}

.menu-toggle-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 26px;
}

.menu-toggle-bars span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.4s var(--ease-out-expo),
              opacity 0.3s,
              width 0.3s var(--ease-out-expo);
  transform-origin: center;
}

.menu-toggle-bars span:nth-child(2) {
  width: 16px;
  margin-left: auto;
}

.menu-toggle.active .menu-toggle-bars span:first-child {
  transform: rotate(45deg) translateY(7px);
}

.menu-toggle.active .menu-toggle-bars span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.menu-toggle.active .menu-toggle-bars span:last-child {
  transform: rotate(-45deg) translateY(-7px);
}

/* Navigation overlay mobile */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 10002;
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
  overflow: hidden;
}

/* Grille de points dorés animée — défile en diagonale */
.nav-overlay::before {
  content: '';
  position: absolute;
  inset: -10%;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(230, 196, 0, 1) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.22;
  animation: nav-dots-scroll 12s linear infinite;
  pointer-events: none;
}

/* Lignes 60° animées — défilent dans l'autre sens */
.nav-overlay::after {
  content: '';
  position: absolute;
  inset: -10%;
  z-index: 0;
  background-image:
    repeating-linear-gradient(60deg,  rgba(230,196,0,0.6) 0px, rgba(230,196,0,0.6) 1px, transparent 1px, transparent 36px),
    repeating-linear-gradient(-60deg, rgba(230,196,0,0.6) 0px, rgba(230,196,0,0.6) 1px, transparent 1px, transparent 36px);
  opacity: 0.18;
  animation: nav-lines-scroll 20s linear infinite;
  pointer-events: none;
}

/* Vignette centrale pour lisibilité des liens */
.nav-overlay .nav-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(0,0,0,0.82) 30%, transparent 100%);
  pointer-events: none;
}

@keyframes nav-dots-scroll {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(28px, 28px); }
}

@keyframes nav-lines-scroll {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-36px, 62px); }
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-menu {
  text-align: center;
  position: relative;
  z-index: 2;
  counter-reset: nav-item;
}

/* Ligne décorative or à gauche */
.nav-menu::before {
  content: '';
  position: absolute;
  left: clamp(-48px, -5vw, -80px);
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 1px;
  height: 75%;
  background: linear-gradient(to bottom, transparent 0%, rgba(230,196,0,0.5) 30%, rgba(230,196,0,0.5) 70%, transparent 100%);
  transition: transform 0.9s 0.3s var(--ease-out-expo);
  transform-origin: center;
}

.nav-overlay.open .nav-menu::before {
  transform: translateY(-50%) scaleY(1);
}

.nav-menu li {
  overflow: hidden;
  counter-increment: nav-item;
}

.nav-menu a {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  display: inline-block;
  padding: 8px 0;
  letter-spacing: 0.03em;
  transform: translateY(110%);
  transition: transform 0.6s var(--ease-out-expo), color 0.3s;
  will-change: transform;
}

.nav-menu a:hover {
  color: var(--gold);
}

.nav-overlay.open .nav-menu a {
  transform: translateY(0);
}

.nav-menu li:nth-child(1) a { transition-delay: 0.1s; }
.nav-menu li:nth-child(2) a { transition-delay: 0.15s; }
.nav-menu li:nth-child(3) a { transition-delay: 0.2s; }
.nav-menu li:nth-child(4) a { transition-delay: 0.25s; }

.nav-menu a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out-expo);
  margin-top: 4px;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-footer {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 60px);
  color: var(--grey);
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.5s 0.3s;
  z-index: 2;
}

.nav-overlay.open .nav-footer {
  opacity: 1;
}

.nav-footer-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-footer-mail:hover {
  color: var(--white);
}

.nav-footer-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-footer-insta:hover {
  color: var(--white);
}

.nav-social a {
  color: var(--grey);
  margin-left: 24px;
  transition: color 0.3s;
  font-weight: 500;
  position: relative;
}

.nav-social a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out-expo);
}

.nav-social a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-social a:hover {
  color: var(--gold);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--black);
  padding: 0 clamp(24px, 4vw, 60px);
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: saturate(0.3);
  animation: heroImageZoom 25s ease-in-out infinite alternate;
}

@keyframes heroImageZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.hero-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 196, 0, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(60px);
  z-index: 1;
  animation: glowPulse 6s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.8); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.hero-content {
  text-align: center;
  max-width: 1100px;
  z-index: 2;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: clamp(12px, 1.2vw, 16px);
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 90px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line-inner {
  display: block;
  transform: translateY(110%);
  will-change: transform;
}

.hero-title .gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 22px);
  color: var(--grey);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background 0.4s, color 0.4s, transform 0.4s var(--ease-out-expo);
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
  z-index: -1;
}

.hero-cta:hover::before {
  transform: scaleX(1);
}

.hero-cta:hover {
  color: var(--black);
}

.hero-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-out-expo);
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
}

.scroll-indicator-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   PAGE HERO (pages internes)
   ============================================ */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-height) + 60px) clamp(24px, 4vw, 60px) clamp(40px, 6vh, 80px);
  background: var(--black);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 80%, rgba(230, 196, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.page-hero-tag {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  opacity: 0;
  transform: translateY(30px);
}

.page-hero-subtitle {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--grey);
  font-weight: 300;
  max-width: 600px;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px);
}

.page-hero-line {
  width: 80px;
  height: 3px;
  background: var(--gold-gradient);
  margin-top: 32px;
  transform: scaleX(0);
  transform-origin: left;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
  padding: 28px 0;
  background: var(--gold);
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  padding: 0 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS COMMUNES
   ============================================ */
.section {
  padding: var(--section-padding) clamp(24px, 4vw, 60px);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-light {
  background: var(--off-white);
  color: var(--black);
}

.section-grey {
  background: var(--grey-dark);
  color: var(--white);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-top: 12px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}

.reveal.visible .section-label::after,
.section-label.visible::after {
  transform: scaleX(1);
}

.section-label-center {
  text-align: center;
}

.section-label-center::after {
  margin-left: auto;
  margin-right: auto;
  transform-origin: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.section-text {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.8;
  color: var(--grey);
  max-width: 560px;
}

/* --- Animation de révélation --- */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Image reveal clip */
.img-reveal {
  overflow: hidden;
  position: relative;
}

.img-reveal img {
  transform: scale(1.3);
  transition: transform 1.2s var(--ease-out-expo);
}

.img-reveal.visible img {
  transform: scale(1);
}

.img-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 1s var(--ease-in-out);
}

.img-reveal.visible::after {
  transform: scaleX(0);
}

/* ============================================
   À PROPOS (Accueil)
   ============================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-image {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--grey-dark);
  overflow: hidden;
  border-radius: 4px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
  transition: transform 0.8s var(--ease-out-expo), opacity 0.6s;
  opacity: 0;
  transform: translate(10px, 10px);
}

.img-reveal.visible .about-image-accent {
  opacity: 1;
  transform: translate(0, 0);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 0 transparent;
  transition: text-shadow 0.6s;
}

.reveal.visible .stat-number {
  text-shadow: 0 0 30px rgba(230, 196, 0, 0.3);
}

.stat-label {
  font-size: 13px;
  color: var(--grey);
  letter-spacing: 0.05em;
}

/* ============================================
   SERVICES
   ============================================ */
.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  padding: clamp(32px, 3vw, 48px);
  background: var(--grey-dark);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, transparent 30%, rgba(230, 196, 0, 0.14));
  opacity: 0;
  transition: opacity 0.6s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  background: #120f00;
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(230,196,0,0.14), 0 0 70px rgba(230,196,0,0.05);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 3;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.service-card:hover::after {
  transform: scaleX(1);
}

/* --- Fond visuel par service --- */

.service-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.07;
  transform: scale(1.08);
  transition: opacity 0.8s var(--ease-out-expo), transform 1.3s var(--ease-out-expo);
  background-size: 100% 100%, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.service-card:hover .service-bg {
  opacity: 0.9;
  transform: scale(1);
}

/* Logo — anneaux concentriques + viseur */
.service-card--logo .service-bg {
  background-image:
    linear-gradient(to top, rgba(18,15,0,0.88) 0%, rgba(0,0,0,0.2) 50%, transparent 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><circle cx="210" cy="185" r="48" fill="none" stroke="%23e6c400" stroke-width="1.2"/><circle cx="210" cy="185" r="96" fill="none" stroke="%23e6c400" stroke-width="0.8"/><circle cx="210" cy="185" r="145" fill="none" stroke="%23e6c400" stroke-width="0.5"/><circle cx="210" cy="185" r="210" fill="none" stroke="%23e6c400" stroke-width="0.3"/><circle cx="210" cy="185" r="8" fill="%23e6c400" opacity="0.95"/><line x1="210" y1="0" x2="210" y2="400" stroke="%23e6c400" stroke-width="0.5" opacity="0.5"/><line x1="0" y1="185" x2="400" y2="185" stroke="%23e6c400" stroke-width="0.5" opacity="0.5"/><line x1="168" y1="143" x2="252" y2="227" stroke="%23e6c400" stroke-width="0.3" opacity="0.35"/><line x1="252" y1="143" x2="168" y2="227" stroke="%23e6c400" stroke-width="0.3" opacity="0.35"/></svg>');
}

/* Site web — grille de points (wireframe) */
.service-card--web .service-bg {
  background-image:
    linear-gradient(to top, rgba(18,15,0,0.88) 0%, rgba(0,0,0,0.2) 50%, transparent 100%),
    radial-gradient(circle, rgba(230,196,0,0.85) 1.2px, transparent 1.2px);
  background-size: 100% 100%, 28px 28px;
  background-repeat: no-repeat, repeat;
  background-position: center, top left;
}

/* Carte de visite — illustration vectorielle */
.service-card--bcard .service-bg {
  background-image:
    linear-gradient(to top, rgba(18,15,0,0.88) 0%, rgba(0,0,0,0.2) 50%, transparent 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect x="48" y="115" width="304" height="185" rx="7" fill="none" stroke="%23e6c400" stroke-width="1.3"/><circle cx="100" cy="188" r="25" fill="none" stroke="%23e6c400" stroke-width="0.9"/><circle cx="100" cy="188" r="10" fill="%23e6c400" opacity="0.25"/><line x1="142" y1="178" x2="318" y2="178" stroke="%23e6c400" stroke-width="1.6"/><line x1="142" y1="196" x2="288" y2="196" stroke="%23e6c400" stroke-width="0.6"/><line x1="142" y1="211" x2="258" y2="211" stroke="%23e6c400" stroke-width="0.6"/><line x1="66" y1="252" x2="168" y2="252" stroke="%23e6c400" stroke-width="0.6"/><line x1="66" y1="265" x2="140" y2="265" stroke="%23e6c400" stroke-width="0.4"/><line x1="232" y1="252" x2="334" y2="252" stroke="%23e6c400" stroke-width="0.6"/><line x1="232" y1="265" x2="308" y2="265" stroke="%23e6c400" stroke-width="0.4"/></svg>');
}

/* Autres services — grille hexagonale */
.service-card--other .service-bg {
  background-image:
    linear-gradient(to top, rgba(18,15,0,0.88) 0%, rgba(0,0,0,0.2) 50%, transparent 100%),
    repeating-linear-gradient(60deg, rgba(230,196,0,0.4) 0px, rgba(230,196,0,0.4) 1px, transparent 1px, transparent 30px),
    repeating-linear-gradient(-60deg, rgba(230,196,0,0.4) 0px, rgba(230,196,0,0.4) 1px, transparent 1px, transparent 30px),
    repeating-linear-gradient(0deg, rgba(230,196,0,0.12) 0px, rgba(230,196,0,0.12) 1px, transparent 1px, transparent 30px);
  background-size: 100% 100%, auto, auto, auto;
  background-repeat: no-repeat, repeat, repeat, repeat;
  background-position: center, top left, top left, top left;
}

/* Z-index du contenu au-dessus des fonds */
.service-number { z-index: 2; }
.service-arrow  { z-index: 2; }
.service-icon   { position: relative; z-index: 2; }
.service-title  { position: relative; z-index: 2; }
.service-desc   { position: relative; z-index: 2; }

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--gold);
  transition: transform 0.5s var(--ease-out-expo);
}

.service-card:hover .service-icon {
  transform: translateY(-8px);
}

.service-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: 24px;
  right: 24px;
  line-height: 1;
}

.service-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.service-card:hover .service-title {
  color: var(--gold);
}

.service-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--grey);
}

/* Services page: descriptions always visible */
.services-page .service-desc {
  max-height: none;
  opacity: 1;
}

/* Services accueil: descriptions cachées */
.services-preview .service-desc {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s var(--ease-out-expo), opacity 0.4s;
}

.services-preview .service-card:hover .service-desc {
  max-height: 200px;
  opacity: 1;
}

.service-arrow {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.4s var(--ease-out-expo);
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* Service détail complet (page services) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(60px, 8vh, 100px) 0;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail-visual {
  aspect-ratio: 4/3;
  background: var(--grey-dark);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.service-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-number {
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 120px);
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
}

.service-detail-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.service-detail-text {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 24px;
}

.service-detail-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-feature-tag {
  padding: 8px 20px;
  border: 1px solid rgba(230, 196, 0, 0.3);
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100px;
}

/* ============================================
   PORTFOLIO / GALERIE
   ============================================ */
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Grille galerie (page galerie) */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 1400px;
  margin: 0 auto;
}

.galerie-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: var(--grey-dark);
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo), filter 0.5s;
  filter: brightness(0.9);
}

.galerie-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.5);
}

.galerie-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.galerie-item:hover .galerie-item-overlay {
  opacity: 1;
}

.galerie-item-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.galerie-item-cat {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Galerie filtres */
.galerie-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: clamp(32px, 4vw, 56px);
  flex-wrap: wrap;
}

.galerie-filter-btn {
  padding: 10px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--grey);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
  letter-spacing: 0.04em;
}

.galerie-filter-btn:hover,
.galerie-filter-btn.active {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

/* ============================================
   GALERIE CARROUSEL
   ============================================ */
.galerie-carousel-section {
  padding-bottom: clamp(60px, 8vh, 100px);
}

.galerie-carousel {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* Compteur 01/36 */
.carousel-counter {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
  font-family: var(--font-display);
}

.carousel-current {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.carousel-sep {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.3);
  margin: 0 4px;
}

.carousel-total {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
}

/* Zone image principale */
.carousel-stage {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.carousel-image-wrapper {
  flex: 1;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  background: var(--grey-dark);
  position: relative;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--grey-dark);
  transition: opacity 0.4s ease;
}

.carousel-image.fading {
  opacity: 0;
}

/* Flèches navigation */
.carousel-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.carousel-arrow:hover {
  border-color: var(--gold);
  background: rgba(230, 196, 0, 0.1);
  transform: scale(1.1);
}

/* Barre de progression */
.carousel-progress {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 24px;
  border-radius: 2px;
  overflow: hidden;
}

.carousel-progress-bar {
  height: 100%;
  background: var(--gold-gradient);
  width: 2.78%; /* 1/36 */
  transition: width 0.4s var(--ease-out-expo);
  border-radius: 2px;
}

/* Miniatures */
.carousel-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
  scroll-behavior: smooth;
}

.carousel-thumbs::-webkit-scrollbar {
  display: none;
}

.carousel-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.4;
  transition: opacity 0.3s, border-color 0.3s, transform 0.3s;
}

.carousel-thumb:hover {
  opacity: 0.7;
  transform: scale(1.05);
}

.carousel-thumb.active {
  opacity: 1;
  border-color: var(--gold);
}

.carousel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive carrousel */
@media (max-width: 768px) {
  .carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .carousel-arrow svg {
    width: 18px;
    height: 18px;
  }

  .carousel-stage {
    gap: 8px;
  }

  .carousel-thumb {
    width: 48px;
    height: 48px;
  }

  .carousel-image-wrapper {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  .carousel-arrow {
    width: 32px;
    height: 32px;
  }

  .carousel-thumb {
    width: 40px;
    height: 40px;
  }
}

/* Scroll horizontal (accueil) */
.portfolio-scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.portfolio-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.portfolio-scroll-wrapper:active {
  cursor: grabbing;
}

.portfolio-track {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  padding: 0 clamp(24px, 4vw, 60px);
  width: max-content;
}

.portfolio-card {
  width: clamp(300px, 28vw, 420px);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}

.portfolio-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
  z-index: 2;
}

.portfolio-card:hover::after {
  transform: scaleX(1);
}

.portfolio-card-image {
  aspect-ratio: 3/4;
  background: var(--grey-dark);
  overflow: hidden;
  position: relative;
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo), filter 0.5s;
  filter: brightness(0.85);
}

.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.08);
  filter: brightness(0.6);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.portfolio-card:hover .portfolio-card-overlay {
  opacity: 1;
}

.portfolio-card-category {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.portfolio-card-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 700;
  color: var(--white);
}

.portfolio-card-info {
  padding: 20px 0 8px;
}

.portfolio-card-info-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.portfolio-card-info-cat {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* ============================================
   PROJETS CLIENTS (Accueil)
   ============================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.project-card {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  background: var(--grey-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.4s, transform 0.4s var(--ease-out-expo);
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.project-card:hover::before {
  transform: scaleX(1);
}

.project-card:hover {
  border-color: rgba(230, 196, 0, 0.2);
  transform: translateY(-4px);
}

.project-card-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.project-card-location {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.project-card-services {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}

.project-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap 0.3s var(--ease-out-expo);
}

.project-card-link:hover {
  gap: 14px;
}

/* ============================================
   PROJETS V2 — Cartes avec aperçu image
   ============================================ */
.projects-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Première rangée : 2 cartes larges */
.project-card-v2.project-card-large:first-child {
  grid-column: 1 / 2;
  min-height: 320px;
}
.project-card-v2.project-card-large:nth-child(2) {
  grid-column: 2 / 4;
  min-height: 320px;
}

.project-card-v2 {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  min-height: 240px;
}

.project-card-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease-out-expo);
}

.project-card-v2:hover img {
  transform: scale(1.05);
}

.project-card-v2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 3vw, 32px);
  transition: background 0.4s;
}

.project-card-v2:hover .project-card-v2-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.2) 100%);
}

.project-card-v2-name {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.project-card-v2-location {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.project-card-v2-services {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.project-card-v2-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap 0.3s var(--ease-out-expo);
}

.project-card-v2-link:hover {
  gap: 14px;
}

/* ============================================
   TÉMOIGNAGES / AVIS
   ============================================ */
.testimonials {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-slider {
  position: relative;
  min-height: 280px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s var(--ease-out-expo);
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  fill: var(--gold);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 1.4em;
  color: var(--gold);
  margin-right: 4px;
}

.testimonial-quote::after {
  content: '\201D';
  font-size: 1.4em;
  color: var(--gold);
  margin-left: 4px;
}

.testimonial-author {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.testimonial-role {
  font-size: 14px;
  color: var(--grey);
  margin-top: 4px;
}

.testimonial-dots {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--grey);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  padding: 0;
}

.testimonial-dot.active {
  background: var(--gold);
  border-color: var(--gold);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s var(--ease-out-expo);
}

.google-badge:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
  margin-top: 40px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}

.google-badge img {
  height: 24px;
}

.google-badge-text {
  font-size: 14px;
  color: var(--grey);
  font-weight: 500;
}

.google-badge-rating {
  color: var(--gold);
  font-weight: 700;
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
  text-align: center;
  padding: var(--section-padding) clamp(24px, 4vw, 60px);
  background: var(--gold);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'GCRAFT';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(100px, 20vw, 300px);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background: var(--black);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: transform 0.4s var(--ease-out-expo),
              box-shadow 0.4s;
  position: relative;
  z-index: 2;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-detail {
  margin-bottom: 32px;
}

.contact-detail-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-detail-value {
  font-size: 18px;
  color: var(--white);
  font-weight: 300;
}

.contact-detail-value a {
  transition: color 0.3s;
}

.contact-detail-value a:hover {
  color: var(--gold);
}

.contact-socials {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.contact-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(230, 196, 0, 0.08);
}

.contact-social-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Formulaire */
.form-group {
  position: relative;
  margin-bottom: 32px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

/* Neutraliser le fond bleu d'autofill du navigateur */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill,
.form-group select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #000000 inset !important;
  -webkit-text-fill-color: var(--white) !important;
  caret-color: var(--white);
  transition: background-color 9999s ease-in-out 0s;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23888888' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.form-group select option {
  background: var(--grey-dark);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group label {
  position: absolute;
  left: 0;
  top: 16px;
  font-size: 15px;
  color: var(--grey);
  pointer-events: none;
  transition: all 0.3s var(--ease-out-expo);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
  top: -8px;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.form-group::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}

.form-group:focus-within::after {
  transform: scaleX(1);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: background 0.4s, color 0.4s;
}

.form-submit:hover {
  background: var(--gold);
  color: var(--black);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Spinner bouton */
.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-right: 10px;
  flex-shrink: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Feedback formulaire */
.form-feedback {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.5;
}

.form-feedback[hidden] {
  display: none;
}

.form-feedback--success {
  display: block;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
}

.form-feedback--error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

/* Map container */
.map-container {
  width: 100%;
  height: 360px;
  margin-top: 32px;
  border: 1px solid rgba(230, 196, 0, 0.15);
  overflow: hidden;
  border-radius: 2px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) brightness(0.85) contrast(1.1) !important;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 48px clamp(24px, 4vw, 60px);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 36px;
  width: auto;
}

.footer-copy {
  font-size: 14px;
  color: var(--grey);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--grey);
  transition: color 0.3s;
  font-weight: 500;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out-expo);
}

.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-links .footer-insta-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-links .footer-insta-link svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   MENTIONS LÉGALES
   ============================================ */

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.legal-block {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(230,196,0,0.2);
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--grey-light);
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}

.legal-content ul li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--grey-light);
  padding: 6px 0 6px 16px;
  border-left: 2px solid rgba(230,196,0,0.3);
  margin-bottom: 4px;
}

.legal-content a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.3s;
}

.legal-content a:hover {
  opacity: 0.75;
}

/* ============================================
   GALERIE FILMSTRIP
   ============================================ */

.galerie-film-section {
  padding-bottom: clamp(60px, 8vh, 100px);
  overflow: hidden;
}

.film-row {
  overflow: hidden;
  margin-bottom: 6px;
}

.film-track {
  display: flex;
  gap: 6px;
  width: max-content;
  will-change: transform;
  cursor: grab;
}
.film-track:active {
  cursor: grabbing;
}

/* Défilement gauche */
.film-left {
  animation: film-go-left linear infinite;
}
/* Défilement droite */
.film-right {
  animation: film-go-right linear infinite;
}

.film-speed-1 { animation-duration: 42s; }
.film-speed-2 { animation-duration: 58s; }
.film-speed-3 { animation-duration: 34s; }

/* Pause au survol de la rangée */
.film-row:hover .film-track {
  animation-play-state: paused;
}

@keyframes film-go-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes film-go-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.film-item {
  position: relative;
  height: clamp(180px, 20vw, 320px);
  flex-shrink: 0;
  overflow: hidden;
  cursor: zoom-in;
}

.film-item img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo), filter 0.5s;
  pointer-events: none;
  user-select: none;
}

.film-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.65);
}

.film-overlay {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s, border-color 0.35s;
}

.film-item:hover .film-overlay {
  opacity: 1;
  border-color: var(--gold);
}

.film-zoom-icon {
  width: 50px;
  height: 50px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  transition: transform 0.35s var(--ease-out-expo), background 0.35s;
}

.film-item:hover .film-zoom-icon {
  transform: scale(1.15);
  background: rgba(230,196,0,0.15);
}

/* CTA sous les rangées */
.film-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 60px) 0;
  flex-wrap: wrap;
}

.film-cta-count {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Lightbox */
.lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.lb.open {
  opacity: 1;
  visibility: visible;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lb-stage {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 88vw;
  max-height: 85vh;
}

.lb-img {
  max-width: 88vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.lb.open .lb-img {
  opacity: 1;
  transform: scale(1);
}

.lb-img.changing {
  opacity: 0;
  transform: scale(0.97);
}

.lb-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, color 0.3s, transform 0.4s var(--ease-out-expo);
}

.lb-close:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(90deg);
}

.lb-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.4s var(--ease-out-expo);
}

.lb-prev { left: 24px; }
.lb-next { right: 24px; }

.lb-prev:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(230,196,0,0.08);
  transform: translateY(-50%) translateX(-4px);
}

.lb-next:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(230,196,0,0.08);
  transform: translateY(-50%) translateX(4px);
}

.lb-counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
}

.lb-cur {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 2ch;
  text-align: right;
  transition: opacity 0.25s;
}

.lb-sep {
  font-size: 16px;
  color: rgba(255,255,255,0.25);
}

.lb-tot {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 1024px) {
  .galerie-masonry { columns: 2; }
}

@media (max-width: 600px) {
  .galerie-masonry { columns: 2; column-gap: 3px; }
  .galerie-masonry { padding: 0 8px; }
  .gal-item { margin-bottom: 3px; }
  .lb-arrow { width: 40px; height: 40px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-close { top: 12px; right: 12px; }
}

/* ============================================
   LIGHTBOX (ancienne version - conservée)
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  cursor: pointer;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  color: var(--white);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--gold);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image {
    max-width: 500px;
    margin: 0 auto;
    order: -1;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail:nth-child(even) {
    direction: ltr;
  }

  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .stats {
    gap: 24px;
  }

  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 clamp(24px, 4vw, 60px);
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .footer-logo-img {
    height: 28px;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 56px);
  }

  .scroll-indicator {
    display: none;
  }

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

  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .galerie-filters {
    gap: 8px;
  }

  .galerie-filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .projects-grid-v2 {
    grid-template-columns: 1fr;
  }

  .project-card-v2.project-card-large:first-child,
  .project-card-v2.project-card-large:nth-child(2) {
    grid-column: 1;
  }

  .project-card-v2 {
    min-height: 200px;
  }

  .service-card {
    min-height: 200px;
    padding: 24px;
  }

  .service-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }

  .service-title {
    font-size: 18px;
  }

  .service-desc {
    font-size: 13px;
  }

  .service-number {
    font-size: 48px;
  }

  .services-grid {
    gap: 12px;
  }

  .section {
    padding: clamp(40px, 6vh, 60px) clamp(16px, 4vw, 24px);
  }

  .cta-title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .service-card {
    padding: clamp(24px, 4vw, 32px);
  }

  .testimonial-quote {
    font-size: clamp(16px, 4vw, 20px);
  }

  .nav-menu ul li a {
    font-size: clamp(28px, 8vw, 40px);
  }
}

@media (max-width: 480px) {
  .stats {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .portfolio-card {
    width: 85vw;
  }

  .galerie-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .section-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .immersive-tunnel {
    height: 100vh;
  }
}

/* ============================================
   IMMERSIVE DEPTH TUNNEL (Accueil)
   ============================================ */
.immersive-tunnel {
  position: relative;
  height: 150vh;
  background: var(--black);
  overflow: hidden;
}

.tunnel-layer {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.tunnel-layer::before {
  content: '';
  position: absolute;
  border: 2px solid rgba(230, 196, 0, 0.12);
  border-radius: 24px;
  transform: scale(var(--tunnel-scale, 1));
  will-change: transform;
}

.tunnel-layer-1::before {
  width: 92%;
  height: 88%;
  border-color: rgba(230, 196, 0, 0.06);
}

.tunnel-layer-2::before {
  width: 76%;
  height: 74%;
  border-color: rgba(230, 196, 0, 0.1);
}

.tunnel-layer-3::before {
  width: 60%;
  height: 60%;
  border-color: rgba(230, 196, 0, 0.15);
  box-shadow: 0 0 40px rgba(230, 196, 0, 0.03);
}

.tunnel-layer-4::before {
  width: 44%;
  height: 46%;
  border-color: rgba(230, 196, 0, 0.2);
  box-shadow: 0 0 60px rgba(230, 196, 0, 0.05);
}

.tunnel-content {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}

.tunnel-content video {
  width: 30%;
  max-width: 340px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 16px;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.6s, transform 0.8s var(--ease-out-expo);
}

.tunnel-content.visible video {
  opacity: 1;
  transform: scale(1);
}

.tunnel-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(230, 196, 0, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

/* Section depth parallax layers */
.depth-section {
  position: relative;
  overflow: hidden;
}

.depth-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 200px);
  font-weight: 800;
  color: rgba(230, 196, 0, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.depth-bg-text.left {
  left: -5%;
  top: 10%;
}

.depth-bg-text.right {
  right: -5%;
  bottom: 10%;
}

/* ============================================
   BRAND IDENTITY — Logo watermarks & accents
   ============================================ */
.brand-watermark {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
}

.brand-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-watermark-lg {
  width: clamp(300px, 40vw, 600px);
  height: auto;
}

.brand-watermark-sm {
  width: clamp(100px, 15vw, 200px);
  height: auto;
}

/* Vidéo logo animé intégrée */
.brand-video-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 6vh, 80px) 0;
}

.brand-video {
  width: clamp(200px, 30vw, 400px);
  height: auto;
  filter: drop-shadow(0 0 60px rgba(230, 196, 0, 0.15));
}

/* Section separator doré */
.gold-separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(230, 196, 0, 0.3), transparent);
  border: none;
}

/* Big GCRAFT text accent */
.brand-big-text {
  font-family: var(--font-display);
  font-size: clamp(60px, 12vw, 160px);
  font-weight: 800;
  background: linear-gradient(135deg, rgba(230, 196, 0, 0.08), rgba(161, 131, 0, 0.03));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1;
  padding: clamp(20px, 4vh, 60px) 0;
  pointer-events: none;
  user-select: none;
}

/* ============================================
   BOUTON WHATSAPP FLOTTANT
   ============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 10000;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
  animation: whatsapp-pulse 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50%       { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7); }
}

@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* ============================================
   BANDEAU COOKIES RGPD
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background: #111111;
  border-top: 1px solid rgba(230, 196, 0, 0.2);
  padding: 20px clamp(24px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out-expo);
  flex-wrap: wrap;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
  margin: 0;
}

.cookie-banner p a {
  color: var(--gold);
  text-decoration: none;
}

.cookie-banner p a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-accept {
  padding: 10px 22px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.cookie-accept:hover {
  opacity: 0.85;
}

.cookie-refuse {
  padding: 10px 22px;
  background: transparent;
  color: var(--grey);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}

.cookie-refuse:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-accept, .cookie-refuse {
    flex: 1;
    text-align: center;
  }
}
