/*
Theme Name: SDVK Gas
Theme URI: https://sdvkgas.com
Author: SDVK
Author URI: https://sdvkgas.com
Description: Thème officiel SDVK Gas — Design premium noir & or, moderne et innovant. Gaz industriels et médicaux.
Version: 1.0.2
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: sdvk-theme
Tags: business, industrial, premium, dark, gold
*/

/* ============================================================
   SDVK GAS — CHARTE GRAPHIQUE OFFICIELLE

   COULEURS:
   - Noir principal  : #050505
   - Or principal    : #D4AF37
   - Or survol       : #B5952F
   - Gris sombre     : #1A1A1A
   - Fond clair      : #FAFAFA
   - Dégradé or      : linear-gradient(135deg, #EAB308 0%, #D4AF37 50%, #A16207 100%)

   TYPOGRAPHIE:
   - Famille : Inter (Google Fonts)
   - Poids : 300, 400, 500, 600, 700, 800, 900
   - Style titres : uppercase, tracking-tighter, font-weight: 900

   EFFETS CLÉS:
   - Glass panel : rgba(255,255,255,0.8) + backdrop-filter: blur(16px)
   - Hover glow  : box-shadow 0 10px 30px rgba(212,175,55,0.15) + translateY(-2px)
   - Gradient text or : -webkit-background-clip: text
   - Coins : border-radius: 0.125rem (quasi-carrés)
   - Transitions : cubic-bezier(0.16, 1, 0.3, 1) 0.3s
   ============================================================ */

/* ===========================
   DESIGN TOKENS (CSS VARS)
   =========================== */
:root {
  --sdvk-black:      #050505;
  --sdvk-gold:       #D4AF37;
  --sdvk-gold-hover: #B5952F;
  --sdvk-grey:       #1A1A1A;
  --sdvk-light:      #FAFAFA;
  --sdvk-white:      #FFFFFF;
  --font-main:       'Inter', ui-sans-serif, system-ui, sans-serif;
  --max-w:           80rem;
  --radius:          0.125rem;
  --transition:      all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --gold-gradient:   linear-gradient(135deg, #EAB308 0%, #D4AF37 50%, #A16207 100%);
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--sdvk-light);
  color: var(--sdvk-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  line-height: 1.5;
}

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button, input, textarea, select { font-family: inherit; }
h1, h2, h3, h4, h5, h6 { font-weight: 900; letter-spacing: -0.03em; }
ul, ol { list-style: none; }

/* ===========================
   SCROLLBAR
   =========================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #FAFAFA; }
::-webkit-scrollbar-thumb { background: #E5E5E5; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #D4AF37; }

/* ===========================
   LAYOUT UTILS
   =========================== */
.site-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--sdvk-light);
}
.site-main { flex-grow: 1; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ===========================
   DESIGN COMPONENTS
   =========================== */

/* --- Glass Panel --- */
.glass-panel {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

/* --- Hover Glow Effect --- */
.hover-glow { transition: var(--transition); }
.hover-glow:hover {
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15) !important;
  border-color: rgba(212, 175, 55, 0.4) !important;
  transform: translateY(-2px);
}

/* --- Gold Gradient Text --- */
.text-gradient-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Gold Badge --- */
.sdvk-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(4px);
  margin-bottom: 2rem;
}
.sdvk-badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--sdvk-gold);
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sdvk-gold);
  animation: badge-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* --- Section Typography --- */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sdvk-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--sdvk-black);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
}
.page-title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--sdvk-black);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 2rem;
}
.page-subtitle {
  font-size: 1.25rem;
  color: rgba(5, 5, 5, 0.7);
  font-weight: 300;
  line-height: 1.7;
  max-width: 48rem;
  margin: 0 auto;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--sdvk-gold);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--sdvk-gold-hover);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
  color: white;
}
.btn-primary-lg { padding: 1.25rem 2.5rem; font-size: 1rem; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: transparent;
  color: var(--sdvk-black);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--sdvk-gold);
  color: var(--sdvk-gold);
}

.gold-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sdvk-gold);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  transition: var(--transition);
}
.gold-link:hover {
  gap: 1rem;
  border-bottom-color: var(--sdvk-gold);
}

/* --- Icon Box --- */
.icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sdvk-gold);
  transition: var(--transition);
  flex-shrink: 0;
  background: white;
}
.icon-box svg { width: 24px; height: 24px; stroke: currentColor; fill: none; }

/* --- Gold Line --- */
.gold-line {
  width: 2rem;
  height: 1px;
  background: rgba(212, 175, 55, 0.3);
  transition: width 0.3s ease;
}

/* ===========================
   SCROLL ANIMATIONS (JS-driven)
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* ===========================
   WORDPRESS ADMIN BAR FIX
   Quand la barre d'admin WP est visible, le header fixe doit
   descendre pour ne pas se superposer à elle.
   =========================== */
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}
/* Le menu mobile overlay doit aussi descendre */
body.admin-bar .mobile-menu { padding-top: calc(7rem + 32px); }
@media screen and (max-width: 782px) {
  body.admin-bar .mobile-menu { padding-top: calc(7rem + 46px); }
}

/* ===========================
   HEADER / NAVIGATION
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 0.625rem 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}

/* Custom logo WordPress (image uploadée via Customizer) */
.site-custom-logo {
  height: 3rem;       /* hauteur fixe dans le header */
  width: auto;        /* largeur proportionnelle */
  max-width: 3rem;    /* jamais plus large que haute */
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transition: height 0.3s ease, max-width 0.3s ease;
}
.site-header.scrolled .site-custom-logo {
  height: 2.25rem;
  max-width: 2.25rem;
}
/* Compatibilité : cible aussi l'ancienne balise WP the_custom_logo() */
.site-logo .custom-logo-link { display: flex; align-items: center; line-height: 0; }
.site-logo .custom-logo {
  height: 3rem;
  width: auto;
  max-width: 3rem;
  object-fit: contain;
  display: block;
  transition: height 0.3s ease;
}
.site-header.scrolled .site-logo .custom-logo { height: 2.25rem; max-width: 2.25rem; }
.logo-icon {
  position: relative;
  width: 2.5rem;
  height: 3.5rem;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: border-color 0.3s;
  flex-shrink: 0;
}
.site-logo:hover .logo-icon { border-color: rgba(212, 175, 55, 0.5); }
.logo-circle {
  position: absolute;
  top: 8px;
  right: -8px;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--sdvk-gold);
}
.logo-drop {
  position: absolute;
  bottom: 8px;
  left: 4px;
  width: 14px;
  height: 14px;
  color: #1f2937;
  fill: #1f2937;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--sdvk-black);
  text-transform: uppercase;
  line-height: 1;
}

/* Desktop Nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .nav-desktop { display: flex; } }

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(5, 5, 5, 0.7);
  transition: color 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--sdvk-gold); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sdvk-gold);
  color: var(--sdvk-black) !important;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--sdvk-gold-hover);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--sdvk-black);
  padding: 0.5rem;
  transition: color 0.3s;
}
.mobile-toggle:hover { color: var(--sdvk-gold); }
@media (min-width: 768px) { .mobile-toggle { display: none; } }

.mobile-toggle svg { width: 28px; height: 28px; stroke: currentColor; fill: none; }
.icon-close { display: none; }
.mobile-toggle.open .icon-open { display: none; }
.mobile-toggle.open .icon-close { display: block; }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 7rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-1rem);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-nav { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-nav-link {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sdvk-black);
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: color 0.3s;
}
.mobile-nav-link.active { color: var(--sdvk-gold); }
.mobile-nav-link:hover { color: var(--sdvk-gold); }
.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--sdvk-gold);
  color: var(--sdvk-black);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 1rem;
  transition: var(--transition);
}
.mobile-nav-cta:hover {
  background: var(--sdvk-gold-hover);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}
.footer-logo-wrap { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }

/* Custom logo dans le footer (image uploadée via Customizer) */
.site-footer .footer-custom-logo,
.site-footer img.footer-custom-logo {
  height: 3rem !important;
  width: auto !important;
  max-width: 3rem !important;
  max-height: 3rem !important;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.footer-logo-icon {
  position: relative;
  width: 2rem;
  height: 3rem;
  background: #F9FAFB;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.footer-logo-circle {
  position: absolute;
  top: 4px;
  right: -6px;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--sdvk-gold);
}
.footer-logo-drop {
  position: absolute;
  bottom: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  fill: #1f2937;
  color: #1f2937;
}
.footer-brand-name {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sdvk-black);
}
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(5, 5, 5, 0.6);
  line-height: 1.6;
}
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sdvk-black);
  margin-bottom: 1.5rem;
}
.footer-links { display: flex; flex-direction: column; gap: 1rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(5, 5, 5, 0.6);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--sdvk-gold); }
.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-list li { font-size: 0.875rem; color: rgba(5, 5, 5, 0.6); }
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(5, 5, 5, 0.5);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { transition: color 0.3s; }
.footer-legal a:hover { color: var(--sdvk-gold); }

/* ===========================
   HOME — HERO SECTION
   =========================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* header fixe ≈ 5rem + barre admin 32px = 7rem de sécurité */
  padding-top: 7rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background: var(--sdvk-light);
}
/* Sans barre admin, on peut réduire légèrement */
body:not(.admin-bar) .hero-section { padding-top: 6rem; }
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: grayscale(100%) contrast(1.05);
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(250,250,250,0.9), rgba(255,255,255,0.8), #FAFAFA);
}
.hero-bg-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212,175,55,0.08) 0%, transparent 50%);
}
.hero-grid {
  position: relative;
  z-index: 10;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }

.hero-title {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--sdvk-black);
  margin-bottom: 2rem;
}
.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(5, 5, 5, 0.7);
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 36rem;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }

/* Stats Grid (right side of hero) */
.stats-grid {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) { .stats-grid { display: grid; } }

.stat-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  padding: 2.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.stat-card:hover {
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4) !important;
  transform: translateY(-2px);
}
.stat-card-wide  { grid-column: span 2; }
/* .stat-card-shift : alignée au même niveau que les autres (plus de décalage vertical) */
.stat-card-shift { transform: none; }
.stat-card-shift:hover { transform: translateY(-2px); }

.stat-value {
  font-size: 3rem;
  font-weight: 900;
  color: var(--sdvk-gold);
  margin-bottom: 1rem;
  transition: transform 0.3s;
  transform-origin: left;
  line-height: 1;
}
.stat-card:hover .stat-value { transform: scale(1.05); }
.stat-label {
  font-size: 0.75rem;
  color: rgba(5, 5, 5, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

/* ===========================
   HOME — SERVICES SECTION
   =========================== */
.services-section {
  padding: 8rem 0;
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.services-section-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background: rgba(212, 175, 55, 0.05);
  filter: blur(100px);
  border-radius: 50%;
  transform: translateX(50%);
  pointer-events: none;
}
.services-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .services-header { flex-direction: row; align-items: flex-end; }
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: #F9FAFB;
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
}
.service-icon-wrap {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: background 0.3s;
}
.service-card:hover .service-icon-wrap { background: rgba(212, 175, 55, 0.2); }
.service-icon-wrap svg { width: 32px; height: 32px; stroke: var(--sdvk-gold); fill: none; }
.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sdvk-black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.service-desc {
  color: rgba(5, 5, 5, 0.6);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2rem;
}
.service-card:hover .gold-line { width: 4rem; }

/* ===========================
   HOME — CTA SECTION
   =========================== */
.cta-section {
  padding: 8rem 0;
  background: var(--sdvk-light);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.03;
  filter: grayscale(100%);
}
.cta-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--sdvk-light), rgba(255,255,255,0.8), transparent);
}
.cta-inner {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--sdvk-black);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  line-height: 1;
}
.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(5, 5, 5, 0.7);
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ===========================
   PAGE HEADER (inner pages)
   =========================== */
.page-header {
  /* 9rem = header fixe (~5rem) + barre admin (32px) + marge visuelle */
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
/* Compensation barre admin WP pour pages internes */
body.admin-bar .page-header { padding-top: 11rem; }
.page-header-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(100px);
  background: rgba(212, 175, 55, 0.05);
}

/* ===========================
   PRODUCTS PAGE
   =========================== */
.products-section { padding: 6rem 0; border-top: 1px solid rgba(0,0,0,0.05); }
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  padding: 2.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.product-card:hover {
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4) !important;
  transform: translateY(-2px);
}
.product-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.product-card-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.4);
  line-height: 1;
  transition: color 0.3s;
}
.product-card:hover .product-card-number { color: var(--sdvk-gold); }
.product-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sdvk-black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-list { display: flex; flex-direction: column; gap: 2rem; }
.product-item { display: flex; align-items: flex-start; gap: 1rem; }
.product-check {
  width: 20px;
  height: 20px;
  stroke: var(--sdvk-gold);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}
.product-name {
  font-weight: 700;
  color: var(--sdvk-black);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
}
.product-desc { font-size: 0.875rem; color: rgba(5,5,5,0.6); line-height: 1.6; font-weight: 300; }

.products-cta { padding: 8rem 0; background: white; border-top: 1px solid rgba(0,0,0,0.05); text-align: center; }
.products-cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--sdvk-black);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  line-height: 1;
}
.products-cta-text {
  font-size: 1.25rem;
  color: rgba(5,5,5,0.7);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   SECTORS PAGE
   =========================== */
.sectors-section { padding: 6rem 0; border-top: 1px solid rgba(0,0,0,0.05); }
.sectors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .sectors-grid { grid-template-columns: repeat(2, 1fr); } }

.sector-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.sector-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
}
.sector-img-wrap {
  height: 18rem;
  overflow: hidden;
  position: relative;
}
.sector-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  z-index: 10;
  transition: background 0.5s;
}
.sector-card:hover .sector-img-overlay { background: transparent; }
.sector-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, white, transparent);
  z-index: 10;
}
.sector-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.7s ease, transform 0.7s ease;
}
.sector-card:hover .sector-img-wrap img { filter: none; transform: scale(1.05); }
.sector-body {
  padding: 2.5rem;
  position: relative;
  z-index: 20;
  background: white;
}
.sector-icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius);
  background: white;
  border: 1px solid rgba(212,175,55,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sdvk-gold);
  margin-bottom: 1.5rem;
  margin-top: -5rem;
  position: relative;
  z-index: 30;
  transition: var(--transition);
}
.sector-icon-box svg { width: 32px; height: 32px; stroke: currentColor; fill: none; }
.sector-card:hover .sector-icon-box {
  background: var(--sdvk-gold);
  color: white;
  border-color: var(--sdvk-gold);
}
.sector-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sdvk-black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.sector-desc { color: rgba(5,5,5,0.6); line-height: 1.7; font-weight: 300; }

/* ===========================
   ABOUT PAGE
   =========================== */
.about-story { padding: 6rem 0; border-top: 1px solid rgba(0,0,0,0.05); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-img-wrap { position: relative; }
.about-img-shadow {
  position: absolute;
  inset: 0;
  background: rgba(212,175,55,0.2);
  transform: translate(1rem, 1rem);
  border-radius: var(--radius);
  transition: transform 0.3s;
}
.about-img-wrap:hover .about-img-shadow { transform: translate(1.5rem, 1.5rem); }
.about-img-wrap img {
  border-radius: var(--radius);
  position: relative;
  z-index: 10;
  filter: grayscale(100%);
  transition: filter 0.7s;
  width: 100%;
}
.about-img-wrap:hover img { filter: none; }

.about-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sdvk-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  display: block;
}
.about-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--sdvk-black);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  line-height: 1.05;
}
.about-text { color: rgba(5,5,5,0.7); line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; }

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .mission-grid { grid-template-columns: 1fr 1fr; } }

.mission-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  padding: 2rem;
  border-radius: var(--radius);
  transition: border-color 0.3s;
}
.mission-card:hover { border-color: rgba(212,175,55,0.3); }
.mission-card svg { width: 32px; height: 32px; stroke: var(--sdvk-gold); fill: none; margin-bottom: 1.5rem; display: block; }
.mission-label {
  font-weight: 700;
  color: var(--sdvk-black);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.mission-desc { font-size: 0.875rem; color: rgba(5,5,5,0.6); font-weight: 300; line-height: 1.6; }

.values-section {
  padding: 8rem 0;
  background: white;
  border-top: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}
.values-glow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 33%;
  height: 50%;
  background: rgba(212,175,55,0.05);
  filter: blur(100px);
  border-radius: 50%;
  transform: translate(50%, 50%);
  pointer-events: none;
}
.values-header { text-align: center; max-width: 48rem; margin: 0 auto 5rem; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: 1fr 1fr; } }

.value-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  padding: 3rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.value-card:hover {
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 10px 30px rgba(212,175,55,0.15);
  transform: translateY(-2px);
}
.value-card svg { width: 48px; height: 48px; stroke: var(--sdvk-gold); fill: none; margin-bottom: 2rem; display: block; }
.value-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--sdvk-black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.value-text { color: rgba(5,5,5,0.7); line-height: 1.7; font-weight: 300; font-size: 1.125rem; }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-section { padding: 6rem 0; border-top: 1px solid rgba(0,0,0,0.05); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--sdvk-black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
  line-height: 1.1;
}
.contact-items { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 3rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1.5rem; }
.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  background: white;
  border: 1px solid rgba(212,175,55,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sdvk-gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; }
.contact-item:hover .contact-icon { background: var(--sdvk-gold); color: white; }
.contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(5,5,5,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.contact-value { color: rgba(5,5,5,0.6); font-weight: 300; line-height: 1.6; }
.contact-badge { display: block; font-size: 0.75rem; color: var(--sdvk-gold); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.25rem; font-weight: 500; }

.map-area {
  width: 100%;
  height: 18rem;
  background: #F3F4F6;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
/* Google Maps iframe (carte interactive) */
.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.4s ease;
}
.map-area:hover .map-iframe { filter: grayscale(0%) contrast(1); }
/* Image background fallback */
.map-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity 0.5s;
}
.map-area:hover .map-bg { opacity: 0.6; }
/* Label Plus Code en overlay (n'intercepte pas les clics sur la carte) */
.map-label-wrap {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  pointer-events: none;
  z-index: 5;
}
.map-label {
  padding: 0.6rem 1rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--sdvk-black);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Contact Form */
.contact-form-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  padding: 2.5rem;
  border-radius: var(--radius);
}
@media (min-width: 768px) { .contact-form-card { padding: 3rem; } }
.form-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--sdvk-black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; }
.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(5,5,5,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius);
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--sdvk-black);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(0,0,0,0.28); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--sdvk-gold);
  box-shadow: 0 0 0 2px rgba(212,175,55,0.15);
}
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: none; }
.form-submit {
  width: 100%;
  background: var(--sdvk-gold);
  color: white;
  padding: 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(212,175,55,0.25);
  margin-top: 0.5rem;
}
.form-submit svg { width: 20px; height: 20px; stroke: white; fill: none; }
.form-submit:hover {
  background: var(--sdvk-gold-hover);
  box-shadow: 0 10px 30px rgba(212,175,55,0.2);
  transform: translateY(-2px);
}
.form-success {
  display: none;
  padding: 1rem 1.5rem;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius);
  color: var(--sdvk-gold);
  font-weight: 600;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.form-success.show { display: block; }
