/* ═══════════════════════════════════════════
   SCORPX DESIGN — Enseignes & Lettres 3D
   Thème : Dark Gold · Premium · Lumineux
   ═══════════════════════════════════════════ */

:root {
  --gold-hi:   #F5D78E;
  --gold:      #C9A84C;
  --gold-lo:   #9A6E2A;
  --gold-deep: #7A5118;
  --gold-glow: rgba(201,168,76,0.13);
  --gold-rim:  rgba(201,168,76,0.28);
  --gold-rim2: rgba(201,168,76,0.12);
  --gold-rim3: rgba(201,168,76,0.05);
  --led-warm:  rgba(255,200,80,0.18);
  --led-blue:  rgba(80,160,255,0.12);

  --bg:  #0C0A08;
  --bg2: #100E0A;
  --bg3: #141108;
  --bg4: #1A160F;

  --text:   #EDE8DF;
  --muted:  rgba(237,232,223,0.52);
  --dim:    rgba(237,232,223,0.24);
  --dimmer: rgba(237,232,223,0.10);

  --font-d: 'Cinzel', serif;
  --font-s: 'Cormorant Garamond', serif;
  --font-u: 'Raleway', sans-serif;
  --ease:   cubic-bezier(0.16,1,0.3,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-u);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ════════════ GRAIN ════════════ */
.grain {
  position: fixed; inset: 0; z-index: 300; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px; opacity: .45;
}

/* ════════════ CURSEUR ════════════ */
#cur-dot, #cur-ring {
  position: fixed; border-radius: 50%; pointer-events: none;
  z-index: 9999; transform: translate(-50%,-50%); opacity: 0;
  transition: opacity .3s;
}
#cur-dot  { width: 6px; height: 6px; background: var(--gold); }
#cur-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(201,168,76,.45);
  transition: width .25s, height .25s, opacity .3s, border-color .25s;
}
#cur-ring.hovering {
  width: 48px; height: 48px;
  border-color: var(--gold);
  background: rgba(201,168,76,.07);
}

/* ════════════ HEADER ════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 56px;
  background: linear-gradient(to bottom, rgba(12,10,8,.94), transparent);
  transition: background .4s, border-color .4s;
}
.header.scrolled {
  background: rgba(12,10,8,.97);
  border-bottom: 1px solid var(--gold-rim2);
  backdrop-filter: blur(14px);
}
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-hex  { width: 60px; height: 60px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; gap: 2px; }
.logo-name {
  font-family: var(--font-d); font-size: 15px; font-weight: 600;
  letter-spacing: .3em;
  background: linear-gradient(130deg, var(--gold-hi), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.logo-sub { font-size: 14px; font-weight: 200; letter-spacing: .55em; color: var(--gold-lo); text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
  font-size: 10px; font-weight: 300; letter-spacing: .2em;
  text-transform: uppercase; text-decoration: none; color: var(--muted);
  transition: color .3s; position: relative;
}
.nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.nav a:hover { color: var(--gold-hi); }
.nav a:hover::after { transform: scaleX(1); }
.nav-cta {
  color: var(--bg)!important;
  background: linear-gradient(130deg, var(--gold-hi), var(--gold));
  padding: 10px 24px; font-weight: 400!important;
}
.nav-cta::after { display: none!important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,168,76,.3); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; padding: 4px; }
.burger span { display: block; width: 24px; height: 1px; background: var(--gold); transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 199;
  background: rgba(12,10,8,.97); border-bottom: 1px solid var(--gold-rim2);
  padding: 32px 40px; flex-direction: column; gap: 24px;
}
.mobile-nav a { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; color: var(--muted); }
.mobile-nav.open { display: flex; }

/* ════════════ TYPO GLOBALE ════════════ */
.section-tag { font-size: 9px; font-weight: 300; letter-spacing: .45em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.section-title {
  font-family: var(--font-d); font-size: clamp(26px,3.8vw,46px);
  font-weight: 400; letter-spacing: .05em; line-height: 1.2;
  color: var(--text); margin-bottom: 16px;
}
.section-title em {
  font-family: var(--font-s); font-style: italic; font-weight: 300;
  background: linear-gradient(130deg, var(--gold-hi), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-sub { font-family: var(--font-s); font-size: 18px; font-style: italic; color: var(--muted); line-height: 1.7; }

/* ════════════ BOUTONS ════════════ */
.btn-gold {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; font-weight: 400; letter-spacing: .22em;
  text-transform: uppercase; text-decoration: none;
  color: var(--bg); background: linear-gradient(130deg, var(--gold-hi), var(--gold));
  padding: 16px 38px; position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(130deg, var(--gold), var(--gold-lo));
  opacity: 0; transition: opacity .35s;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 45px rgba(201,168,76,.35); }
.btn-gold:hover::before { opacity: 1; }
.btn-gold span, .btn-gold svg { position: relative; z-index: 1; }
.btn-gold svg { width: 18px; transition: transform .3s; }
.btn-gold:hover svg { transform: translateX(5px); }

.btn-outline {
  display: inline-flex; align-items: center;
  font-size: 10px; font-weight: 300; letter-spacing: .22em;
  text-transform: uppercase; text-decoration: none;
  color: var(--gold); border: 1px solid var(--gold-rim);
  padding: 16px 38px; backdrop-filter: blur(8px);
  background: rgba(12,10,8,.25); transition: all .3s;
}
.btn-outline:hover { color: var(--gold-hi); border-color: var(--gold); background: var(--gold-glow); transform: translateY(-3px); }

/* ════════════ HERO ════════════ */
.hero { position: relative; height: 100vh; min-height: 620px; overflow: hidden; }

.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; object-position: center; background: var(--bg3); }
.hero-vid-dark { position: absolute; inset: 0; background: rgba(8,7,5,.58); }
.hero-vid-vignette { position: absolute; inset: 0; background: radial-gradient(ellipse 78% 78% at 50% 50%, transparent 22%, rgba(4,3,2,.88) 100%); }
.hero-vid-scanlines { position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,.05) 3px, rgba(0,0,0,.05) 4px); }

/* Orbes LED déco */
.hero-glow-wrap { position: absolute; inset: 0; z-index: 5; pointer-events: none; overflow: hidden; }
.glow-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0; animation: orbPulse 6s ease-in-out infinite; }
.g1 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(255,200,100,.18) 0%, transparent 70%); top: 15%; left: 8%; animation-delay: 0s; }
.g2 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(201,168,76,.14) 0%, transparent 70%); top: 40%; right: 15%; animation-delay: 2s; }
.g3 { width: 200px; height: 200px; background: radial-gradient(circle, rgba(255,220,120,.1) 0%, transparent 70%); bottom: 20%; left: 30%; animation-delay: 4s; }
@keyframes orbPulse { 0%,100%{opacity:0;transform:scale(.8)} 50%{opacity:1;transform:scale(1.15)} }

.hero-content {
  position: absolute; inset: 0; z-index: 20;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 8%; pointer-events: none;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
  animation: fadeUp .8s .2s var(--ease) both;
}
.ey-line { display: block; width: 40px; height: 1px; background: linear-gradient(to right, var(--gold), transparent); }
.ey-text { font-size: 9px; letter-spacing: .42em; text-transform: uppercase; color: var(--gold); }

.hero-title {
  font-family: var(--font-d); font-weight: 900;
  line-height: 1; margin-bottom: 24px;
  animation: fadeUp .8s .32s var(--ease) both;
}
.ht-l1 { display: block; font-size: clamp(54px,8.5vw,112px); color: var(--text); letter-spacing: -.01em; }
.ht-l2 {
  display: block; font-size: clamp(42px,7vw,92px);
  background: linear-gradient(160deg, var(--gold-hi) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -.01em;
}
.ht-l2 em { font-family: var(--font-s); font-style: italic; font-weight: 300; }

.hero-sub {
  font-family: var(--font-s); font-size: clamp(15px,1.8vw,20px);
  font-style: italic; color: var(--muted); line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeUp .8s .44s var(--ease) both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap; pointer-events: all;
  animation: fadeUp .8s .56s var(--ease) both;
}

/* Compteurs */
.hero-stats {
  position: absolute; bottom: 90px; right: 8%;
  z-index: 20; display: flex; align-items: center; gap: 32px;
  animation: fadeIn 1s 1s ease both;
}
.hs-item { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.hs-val { font-family: var(--font-d); font-size: 32px; font-weight: 400; color: var(--gold-hi); line-height: 1; }
.hs-unit { font-size: 12px; color: var(--gold); letter-spacing: .1em; margin-left: 2px; }
.hs-label { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); }
.hs-sep { font-size: 10px; color: var(--gold-rim); }

/* Coins décoratifs */
.hc { position: absolute; z-index: 15; width: 44px; height: 44px; pointer-events: none; }
.hc::before, .hc::after { content: ''; position: absolute; background: var(--gold); opacity: .38; }
.hc::before { width: 100%; height: 1px; }
.hc::after  { width: 1px; height: 100%; }
.hc-tl { top: 78px; left: 32px; } .hc-tl::before, .hc-tl::after { top: 0; left: 0; }
.hc-tr { top: 78px; right: 32px; transform: rotate(90deg); } .hc-tr::before, .hc-tr::after { top: 0; left: 0; }
.hc-bl { bottom: 32px; left: 32px; transform: rotate(-90deg); } .hc-bl::before, .hc-bl::after { top: 0; left: 0; }
.hc-br { bottom: 32px; right: 32px; transform: rotate(180deg); } .hc-br::before, .hc-br::after { top: 0; left: 0; }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 15; pointer-events: none;
  animation: fadeIn 1s 1.1s ease both;
}
.scroll-track { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold-rim), transparent); animation: scrollPulse 2s ease-in-out infinite; }
.scroll-txt { font-size: 8px; letter-spacing: .4em; text-transform: uppercase; color: var(--dim); }
@keyframes scrollPulse { 0%,100%{transform:scaleY(1)} 50%{transform:scaleY(.55)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ════════════ JOUR / NUIT ════════════ */
.daynight-section {
  padding: 120px 7%; background: var(--bg2);
  border-top: 1px solid var(--gold-rim2);
  text-align: center;
}
.daynight-section .section-tag { text-align: center; }
.daynight-section .section-sub { margin-bottom: 52px; }

.dn-compare {
  position: relative; overflow: hidden;
  max-width: 900px; margin: 0 auto;
  aspect-ratio: 16/9; border: 1px solid var(--gold-rim2);
  cursor: ew-resize; user-select: none; touch-action: none;
}
.dn-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: var(--bg3); display: block; }
.dn-night { z-index: 1; }
.dn-day-wrap {
  position: absolute; inset: 0; z-index: 2;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}
.dn-day { width: 100%; height: 100%; object-fit: cover; background: var(--bg4); display: block; }

.dn-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; flex-direction: column; align-items: center;
}
.dn-line { width: 1px; flex: 1; background: linear-gradient(to bottom, transparent, var(--gold) 15%, var(--gold) 85%, transparent); }
.dn-handle {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--gold-rim);
  background: rgba(12,10,8,.85); display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(201,168,76,.2);
  transition: transform .25s, box-shadow .25s;
}
.dn-handle svg { width: 24px; height: 24px; }
.dn-compare:hover .dn-handle { transform: translateY(-50%) scale(1.1); box-shadow: 0 0 32px rgba(201,168,76,.4); }

.dn-tag {
  position: absolute; top: 16px; z-index: 11;
  font-size: 8px; letter-spacing: .3em; text-transform: uppercase;
  padding: 5px 12px; border: 1px solid var(--gold-rim);
  background: rgba(12,10,8,.65); backdrop-filter: blur(6px);
}
.dn-tag-l { left: 16px; color: var(--gold-hi); }
.dn-tag-r { right: 16px; color: var(--muted); }

.dn-hint {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  font-size: 9px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--dim); white-space: nowrap; z-index: 11; pointer-events: none;
  animation: hintBlink 2.5s ease-in-out 1s 3 both;
}
@keyframes hintBlink { 0%,100%{opacity:.5} 50%{opacity:1} }

/* ════════════ GAMMES ════════════ */
.gammes-section { padding: 120px 7%; border-top: 1px solid var(--gold-rim2); }
.gammes-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1px;
  margin-top: 56px;
  background: var(--gold-rim2);
  border: 1px solid var(--gold-rim2);
}

.gamme-card {
  background: var(--bg2); display: flex; flex-direction: column;
  overflow: hidden; transition: background .35s;
  position: relative;
}
.gamme-card:hover { background: var(--bg4); }
.gamme-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .4s; z-index: 2;
}
.gamme-card:hover::before { opacity: 1; }

.gc-img-wrap { position: relative; overflow: hidden; flex-shrink: 0; }
.gamme-featured .gc-img-wrap { height: 260px; }
.gamme-card:not(.gamme-featured) .gc-img-wrap { height: 180px; }
.gc-img { width: 100%; height: 100%; object-fit: cover; background: var(--bg3); transition: transform .6s var(--ease), filter .4s; filter: brightness(.85) saturate(.8); display: block; }
.gamme-card:hover .gc-img { transform: scale(1.05); filter: brightness(1) saturate(1); }
.gc-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, var(--bg2) 100%); transition: background .35s; }
.gamme-card:hover .gc-img-overlay { background: linear-gradient(to bottom, transparent 40%, var(--bg4) 100%); }

/* Effet halo LED simulé */
/*.gc-led-glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% 80%, var(--led-warm) 0%, transparent 70%);
  opacity: 0; transition: opacity .5s;
}*/
.gamme-card:hover .gc-led-glow { opacity: 1; }

.gc-body { padding: 22px 24px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.gc-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-deep); border: 1px solid var(--gold-rim2); padding: 4px 10px; width: fit-content;
}
.gc-tag-led { color: var(--gold); border-color: var(--gold-rim); }
.led-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
  animation: ledBlink 2s ease-in-out infinite;
}
@keyframes ledBlink { 0%,100%{opacity:1;box-shadow:0 0 4px var(--gold)} 50%{opacity:.3;box-shadow:none} }

.gc-body h3 { font-family: var(--font-s); font-size: 20px; font-weight: 400; color: var(--text); }
.gc-body p  { font-size: 13px; line-height: 1.8; color: var(--muted); }
.gc-list { list-style: none; display: flex; flex-direction: column; gap: 6px; padding-top: 4px; }
.gc-list li { font-size: 13px; color: var(--muted); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.gc-list li::before { content: '→'; color: var(--gold); font-size: 10px; flex-shrink: 0; margin-top: 1px; }
.gc-prix { font-family: var(--font-s); font-size: 18px; font-style: italic; color: var(--dim); margin-top: auto; padding-top: 12px; border-top: 1px solid var(--gold-rim2); }
.gc-prix strong { color: var(--gold-hi); font-weight: 400; font-size: 22px; }

/* ════════════ MATIÈRES ════════════ */
.matieres-section { padding: 120px 7%; background: var(--bg2); border-top: 1px solid var(--gold-rim2); }

.matieres-tabs {
  display: flex; gap: 1px; background: var(--gold-rim2);
  border: 1px solid var(--gold-rim2); margin-top: 48px; margin-bottom: 1px; flex-wrap: wrap;
}
.mat-tab {
  background: var(--bg2); border: none; cursor: none;
  padding: 14px 28px; font-family: var(--font-u); font-size: 11px;
  font-weight: 300; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); transition: background .3s, color .3s; flex: 1; text-align: center;
}
.mat-tab:hover { background: var(--bg3); color: var(--text); }
.mat-tab.active { background: var(--bg4); color: var(--gold-hi); position: relative; }
.mat-tab.active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.matieres-panels { border: 1px solid var(--gold-rim2); border-top: none; }
.mat-panel { display: none; }
.mat-panel.active { display: grid; grid-template-columns: 1fr 1.2fr; gap: 0; }

.mp-visual { overflow: hidden; position: relative; min-height: 360px; }
.mp-img { width: 100%; height: 100%; object-fit: cover; background: var(--bg3); display: block; filter: brightness(.85) saturate(.8); transition: transform .6s var(--ease), filter .4s; }
.mp-visual:hover .mp-img { transform: scale(1.04); filter: brightness(.98) saturate(1); }

.mp-text { padding: 48px 44px; display: flex; flex-direction: column; gap: 16px; }
.mp-text h3 { font-family: var(--font-s); font-size: 28px; font-weight: 400; color: var(--text); }
.mp-text p  { font-size: 13px; line-height: 1.85; color: var(--muted); }

.mp-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--gold-rim2); border: 1px solid var(--gold-rim2); margin-top: 8px; }
.mps-item { background: var(--bg2); padding: 14px 18px; display: flex; flex-direction: column; gap: 4px; }
.mps-k { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-deep); }
.mps-v { font-size: 13px; color: var(--text); font-weight: 400; }

.mp-uses { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.mp-uses span { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold-rim); padding: 5px 12px; background: var(--gold-rim3); }

/* ════════════ GALERIE ════════════ */
.gallery-section { padding: 120px 7%; border-top: 1px solid var(--gold-rim2); }
.gallery-section .section-sub { margin-bottom: 56px; }

.gallery-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--gold-rim2); border: 1px solid var(--gold-rim2);
}
.gal-item { position: relative; overflow: hidden; background: var(--bg3); }
.gal-img {
  display: block; width: 100%; height: 260px;
  object-fit: cover; background: var(--bg3);
  transition: transform .6s var(--ease), filter .4s;
  filter: brightness(.88) saturate(.82);
}
.gal-item.gal-tall .gal-img { height: 360px; }
.gal-item:hover .gal-img { transform: scale(1.05); filter: brightness(1.05) saturate(1); }

.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,10,8,.9) 0%, transparent 55%);
  opacity: 0; transition: opacity .4s;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  padding: 20px 22px; gap: 4px;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-tag { font-size: 8px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold-rim); padding: 3px 10px; background: rgba(12,10,8,.5); }
.gal-name { font-family: var(--font-s); font-size: 16px; font-style: italic; color: var(--text); }

/* ════════════ PROCESSUS ════════════ */
.process-section { padding: 120px 7%; background: var(--bg2); border-top: 1px solid var(--gold-rim2); }
.proc-intro { margin-bottom: 72px; max-width: 640px; }
.proc-desc { font-size: 14px; line-height: 1.9; color: var(--muted); margin-bottom: 28px; }

.proc-certifs { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.pc-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; color: var(--muted); letter-spacing: .04em;
}
.pc-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

.proc-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--gold-rim2); border: 1px solid var(--gold-rim2);
}
.proc-step {
  background: var(--bg2); padding: 36px 28px 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background .35s; position: relative;
}
.proc-step:hover { background: var(--bg3); }
.proc-step::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .4s;
}
.proc-step:hover::before { opacity: 1; }

.ps-connector {
  position: absolute; right: -1px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 40px; background: var(--gold-rim);
  z-index: 2;
}

.ps-num { font-family: var(--font-d); font-size: 9px; letter-spacing: .3em; color: var(--gold-deep); }
.ps-icon {
  width: 48px; height: 48px; border: 1px solid var(--gold-rim2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); background: var(--bg2); flex-shrink: 0;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.ps-icon svg { width: 24px; height: 24px; }
.proc-step:hover .ps-icon { border-color: var(--gold-rim); background: var(--bg3); box-shadow: 0 0 16px rgba(201,168,76,.15); }
.proc-step h3 { font-family: var(--font-s); font-size: 20px; font-weight: 400; color: var(--text); }
.proc-step p  { font-size: 14px; line-height: 1.8; color: var(--muted); }
.ps-tag { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-top: auto; }

/* ════════════ RÉGLEMENTATION ════════════ */
.reglementation-section { padding: 120px 7%; border-top: 1px solid var(--gold-rim2); }

.regl-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; margin-top: 56px;
  background: var(--gold-rim2); border: 1px solid var(--gold-rim2);
}
.regl-card {
  background: var(--bg2); padding: 36px 30px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background .35s; position: relative;
}
.regl-card:hover { background: var(--bg3); }
.regl-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .4s;
}
.regl-card:hover::before { opacity: 1; }

.regl-icon { width: 48px; height: 48px; color: var(--gold); opacity: .7; }
.regl-icon svg { width: 48px; height: 48px; }
.regl-card h3 { font-family: var(--font-s); font-size: 20px; font-weight: 400; color: var(--text); }
.regl-card p  { font-size: 14px; line-height: 1.85; color: var(--muted); }
.regl-card p strong { color: var(--gold-hi); font-weight: 400; }

.regl-note {
  display: flex; align-items: flex-start; gap: 16px;
  margin-top: 32px; padding: 22px 28px;
  border: 1px solid var(--gold-rim2); background: var(--bg2);
}
.regl-note svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.regl-note p { font-size: 13px; line-height: 1.8; color: var(--muted); }

/* ════════════ FAQ ════════════ */
.faq-section { padding: 120px 7%; background: var(--bg2); border-top: 1px solid var(--gold-rim2); }
.faq-list {
  display: flex; flex-direction: column; gap: 1px;
  margin-top: 56px; background: var(--gold-rim2);
  border: 1px solid var(--gold-rim2);
}
.faq-item { background: var(--bg2); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 32px; background: none; border: none; cursor: none;
  text-align: left; font-family: var(--font-s); font-size: 19px; font-weight: 400;
  color: var(--text); transition: color .3s, background .3s;
}
.faq-q:hover, .faq-q[aria-expanded="true"] { color: var(--gold-hi); background: var(--bg3); }
.faq-arrow { width: 16px; height: 16px; flex-shrink: 0; color: var(--gold); transition: transform .35s var(--ease); }
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a.open { max-height: 300px; }
.faq-a p { padding: 0 32px 24px; font-size: 14px; line-height: 1.85; color: var(--muted); }
.faq-a p strong { color: var(--gold-hi); font-weight: 400; }

/* ════════════ CTA / DEVIS ════════════ */
.cta-section { position: relative; padding: 140px 7%; border-top: 1px solid var(--gold-rim2); overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; background: var(--bg3); filter: brightness(.32) saturate(.6); }
.cta-bg-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(12,10,8,.96) 40%, rgba(12,10,8,.72) 100%); }

.cta-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; text-align: center; }
.cta-decor { font-size: 18px; color: var(--gold); letter-spacing: .5em; margin-bottom: 28px; opacity: .6; }
.cta-title {
  font-family: var(--font-d); font-size: clamp(26px,4vw,44px);
  font-weight: 400; letter-spacing: .06em; color: var(--text);
  margin-bottom: 16px; line-height: 1.2;
}
.cta-title em {
  font-family: var(--font-s); font-style: italic; font-weight: 300;
  background: linear-gradient(130deg, var(--gold-hi), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.cta-sub { font-family: var(--font-s); font-size: 18px; font-style: italic; color: var(--muted); margin-bottom: 52px; line-height: 1.7; }

.cta-form { text-align: left; display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: 9px; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(12,10,8,.7); border: 1px solid var(--gold-rim2);
  color: var(--text); font-family: var(--font-u); font-size: 14px; font-weight: 300;
  padding: 14px 18px; outline: none; width: 100%;
  backdrop-filter: blur(8px); -webkit-appearance: none;
  transition: border-color .3s, background .3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: rgba(20,17,8,.8); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--dimmer); }
.form-group select { cursor: none; }
.form-group select option { background: var(--bg3); }
.form-group textarea { resize: vertical; min-height: 80px; }

.form-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  align-self: center; font-family: var(--font-u); font-size: 10px; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase; color: var(--bg);
  background: linear-gradient(130deg, var(--gold-hi), var(--gold));
  padding: 18px 60px; border: none; cursor: none;
  position: relative; overflow: hidden; transition: transform .3s, box-shadow .3s;
}
.form-submit::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(130deg, var(--gold), var(--gold-lo));
  opacity: 0; transition: opacity .35s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 42px rgba(201,168,76,.38); }
.form-submit:hover::before { opacity: 1; }
.form-submit span, .form-submit svg { position: relative; z-index: 1; }
.form-submit svg { width: 18px; transition: transform .3s; }
.form-submit:hover svg { transform: translateX(5px); }
.form-submit.sent { background: linear-gradient(130deg, #4CAF7A, #3a8a5e); }

/* ════════════ FOOTER ════════════ */
.footer { border-top: 1px solid var(--gold-rim2); background: var(--bg2); }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px; padding: 60px 7%; border-bottom: 1px solid var(--gold-rim2);
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-logo {
  font-family: var(--font-d); font-size: 14px; letter-spacing: .3em;
  background: linear-gradient(130deg, var(--gold-hi), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-tagline { font-family: var(--font-s); font-size: 14px; font-style: italic; color: var(--dim); }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-contact a, .footer-contact span { font-size: 12px; letter-spacing: .06em; color: var(--muted); text-decoration: none; transition: color .3s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-hi); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 7%; font-size: 11px; color: var(--dim); }

/* ════════════ REVEAL ════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--delay, 0s); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 1200px) {
  .gammes-grid { grid-template-columns: 1fr 1fr; }
  .gamme-featured .gc-img-wrap { height: 200px; }
  .proc-steps { grid-template-columns: 1fr 1fr; }
  .regl-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .mat-panel.active { grid-template-columns: 1fr; }
  .mp-visual { min-height: 260px; }
  .gallery-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .header { padding: 18px 24px; }
  .nav { display: none; }
  .burger { display: flex; }

  .hero-stats { bottom: 80px; right: auto; left: 50%; transform: translateX(-50%); gap: 20px; white-space: nowrap; }
  .hs-val { font-size: 24px; }
  .hc { display: none; }

  .daynight-section,
  .gammes-section,
  .matieres-section,
  .gallery-section,
  .process-section,
  .reglementation-section,
  .faq-section,
  .cta-section { padding: 80px 24px; }

  .gammes-grid { grid-template-columns: 1fr; }
  .matieres-tabs { flex-wrap: wrap; }
  .mat-tab { flex: 1 1 calc(33% - 2px); min-width: 90px; font-size: 9px; padding: 10px 8px; }

  .proc-steps { grid-template-columns: 1fr; }
  .ps-connector { display: none; }

  .regl-grid { grid-template-columns: 1fr 1fr; }
  .regl-card { padding: 24px 20px; }

  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; padding: 48px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 20px 24px; }

  .faq-q { padding: 18px 22px; font-size: 17px; }
  .faq-a p { padding: 0 22px 20px; }

  .dn-compare { aspect-ratio: 4/3; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; gap: 12px; }
  .btn-gold, .btn-outline { width: 100%; justify-content: center; }
  .regl-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 10px; align-items: center; }
  .hs-sep { display: none; }
}
