/*
Theme Name: Cercle des Sons
Theme URI: https://cercledessons.com
Author: KWITEK
Author URI: https://kwitek.be
Description: Thème vitrine professionnel — Technicien du Son Indépendant. Design premium équilibré, palette or/charcoal, animations sonores. Conçu par kwitek.be
Version: 5.9.5
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: cercle-des-sons
Tags: dark, custom-colors, custom-logo, custom-menu, featured-images, full-width-template
*/

/* =========================================================
   VARIABLES — PALETTE AMÉLIORÉE (moins sombre, plus lisible)
   ========================================================= */
:root {
  /* Fonds — plus clairs qu'avant */
  --bg-deep:   #0e1117;   /* fond le plus sombre (hero) */
  --bg-dark:   #141820;   /* sections sombres */
  --bg-mid:    #1c2230;   /* sections moyennes */
  --bg-card:   #202840;   /* cartes/panels */
  --bg-glass:  rgba(28,34,48,0.85);

  /* Or */
  --or:        #c9a84c;
  --or-light:  #e2c06a;
  --or-pale:   #f0dda8;
  --or-glow:   rgba(201,168,76,0.18);

  /* Textes */
  --txt-white: #f4f0e8;
  --txt-light: #cdd3e0;
  --txt-mid:   #8c97b0;
  --txt-muted: #596280;

  /* Accents */
  --accent:    #3a8cff;
  --success:   #2eb87a;
  --border:    rgba(201,168,76,0.14);
  --border-hi: rgba(201,168,76,0.35);
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg-deep);
  color: var(--txt-light);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.65;
}
a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--or); color: var(--bg-deep); }

/* =========================================================
   CURSEUR ÉGALISEUR — VERSION PREMIUM
   ========================================================= */
#cursor-eq {
  position: fixed; pointer-events: none; z-index: 9999;
  display: flex; align-items: flex-end; gap: 2.5px;
  width: 30px; height: 24px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 6px rgba(201,168,76,0.5));
}
.eq-bar {
  flex: 1; background: linear-gradient(to top, var(--or), var(--or-light));
  border-radius: 1.5px;
  animation: eqDance 0.6s ease-in-out infinite alternate;
  transform-origin: bottom;
}
.eq-bar:nth-child(1) { animation-duration: 0.52s; animation-delay: 0s; }
.eq-bar:nth-child(2) { animation-duration: 0.68s; animation-delay: 0.08s; }
.eq-bar:nth-child(3) { animation-duration: 0.44s; animation-delay: 0.04s; }
.eq-bar:nth-child(4) { animation-duration: 0.60s; animation-delay: 0.14s; }
.eq-bar:nth-child(5) { animation-duration: 0.56s; animation-delay: 0.10s; }
@keyframes eqDance {
  from { height: 3px; opacity: 0.4; }
  to   { height: 24px; opacity: 1; }
}
#cursor-ring {
  position: fixed; width: 44px; height: 44px;
  border: 1.5px solid rgba(201,168,76,0.35);
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}
#cursor-ring.hover { width: 60px; height: 60px; border-color: var(--or); }

/* =========================================================
   NAVIGATION
   ========================================================= */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 52px;
  background: linear-gradient(to bottom, rgba(14,17,23,0.95), rgba(14,17,23,0.0));
  transition: all 0.35s ease;
}
#site-header.scrolled {
  padding: 13px 52px;
  background: rgba(14,17,23,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

/* Logo dans la nav */
.site-logo { display: flex; align-items: center; gap: 12px; }
.site-logo img { height: 42px; width: auto; object-fit: contain; }
.site-logo-text { display: none !important; }
.site-logo-text-DISABLED {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem; letter-spacing: 0.12em; color: var(--or);
  line-height: 1;
}
.site-logo-text span { color: var(--txt-white); }

/* Menu principal */
#primary-menu {
  display: flex; gap: 32px; align-items: center;
}
#primary-menu li a {
  font-size: 0.73rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--txt-mid);
  font-weight: 500; transition: color 0.3s; position: relative;
  padding-bottom: 3px;
}
#primary-menu li a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--or); transition: width 0.3s ease;
}
#primary-menu li a:hover,
#primary-menu .current-menu-item > a,
#primary-menu .current_page_item > a { color: var(--or); }
#primary-menu li a:hover::after,
#primary-menu .current-menu-item > a::after { width: 100%; }

.menu-cta > a,
#primary-menu .menu-cta > a {
  background: var(--or) !important;
  color: var(--bg-deep) !important;
  padding: 9px 22px !important; border-radius: 3px;
  font-weight: 700 !important; letter-spacing: 0.1em !important;
  transition: all 0.3s !important;
}
.menu-cta > a::after { display: none !important; }
.menu-cta > a:hover { background: var(--or-light) !important; box-shadow: 0 6px 20px rgba(201,168,76,0.3) !important; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-toggle span { width: 26px; height: 1.5px; background: var(--or); transition: all 0.3s; display: block; }

/* Mobile overlay */
#mobile-menu-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(10,13,20,0.98); z-index: 490;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
#mobile-menu-overlay.open { display: flex; }
#mobile-menu-overlay a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem; letter-spacing: 0.08em; color: var(--txt-white);
  transition: color 0.3s, border-color 0.3s, padding 0.3s;
  border-left: 3px solid transparent;
  padding-left: 0;
}
#mobile-menu-overlay a:hover { color: var(--or); }
#mobile-menu-overlay a[style*="border-left:3px solid var(--or)"] {
  color: var(--or) !important;
}
.overlay-close { position: absolute; top: 24px; right: 48px; font-size: 1.8rem; color: var(--txt-mid); background: none; border: none; }

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-section {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
/* LEFT PANEL — texte */
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 130px 56px 90px 56px; position: relative; z-index: 2;
  background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-dark) 100%);
}
.hero-left::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--or-border), transparent);
}
/* RIGHT PANEL — photo technicien */
.hero-right {
  position: relative; overflow: hidden;
}
.hero-right-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  filter: brightness(0.75) contrast(1.05);
  transition: transform 8s ease;
}
.hero-right-img:hover { transform: scale(1.04); }
.hero-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg-deep) 0%, transparent 30%),
              linear-gradient(to top, var(--bg-deep) 0%, transparent 25%);
}
/* Keep bg-image for backward compat on inner pages */
.hero-bg-image {
  position: absolute; inset: 0; background-size: cover; background-position: center top;
  opacity: 0.28; filter: grayscale(20%) brightness(0.8);
}
.hero-bg-gradient { position: absolute; inset: 0; background: radial-gradient(ellipse 75% 65% at 50% 40%, rgba(201,168,76,0.07) 0%, transparent 70%); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(14,17,23,0.25) 0%, rgba(14,17,23,0.6) 55%, var(--bg-deep) 100%); }
.hero-grid { position: absolute; inset: 0; background-image: repeating-linear-gradient(90deg, rgba(201,168,76,0.03) 0, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 100px); }

/* Sound waves */
.sound-waves { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0.06; pointer-events: none; }
.wave-ring { position: absolute; border: 1px solid var(--or); border-radius: 50%; animation: waveRipple 4s ease-out infinite; }
.wave-ring:nth-child(1) { width: 160px; height: 160px; animation-delay: 0s; }
.wave-ring:nth-child(2) { width: 320px; height: 320px; animation-delay: 0.7s; }
.wave-ring:nth-child(3) { width: 500px; height: 500px; animation-delay: 1.5s; }
.wave-ring:nth-child(4) { width: 700px; height: 700px; animation-delay: 2.2s; }
.wave-ring:nth-child(5) { width: 900px; height: 900px; animation-delay: 3s; }
@keyframes waveRipple { 0% { transform: scale(0.88); opacity: 1; } 100% { transform: scale(1.12); opacity: 0; } }

.hero-content { position: relative; z-index: 2; max-width: 100%; }
.hero-logo { margin: 0 auto 28px; width: 110px; height: 110px; animation: fadeUp 0.8s ease forwards 0.1s; opacity: 0; }
.hero-logo img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 20px rgba(201,168,76,0.25)); }
.hero-eyebrow {
  font-family: 'Space Mono', monospace; font-size: 0.67rem; letter-spacing: 0.3em;
  color: var(--or); text-transform: uppercase; margin-bottom: 20px; text-align: left;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.25s;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 12vw, 11rem);
  line-height: 0.88; letter-spacing: 0.04em; color: var(--txt-white); margin-bottom: 4px;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.4s;
}
.hero-title .text-or { color: var(--or); display: block; }
.hero-subtitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.4rem);
  letter-spacing: 0.25em; color: var(--txt-mid); margin-bottom: 26px;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.55s;
}
.hero-description {
  font-size: 1.02rem; color: var(--txt-mid); line-height: 1.85;
  max-width: 520px; margin: 0 0 44px; font-weight: 300;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.7s;
}
.hero-buttons {
  display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.9s;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp 1s ease forwards 1.4s;
}
.scroll-indicator span { font-family: 'Space Mono', monospace; font-size: 0.58rem; letter-spacing: 0.22em; color: var(--txt-muted); text-transform: uppercase; }
.scroll-line { width: 1px; height: 52px; background: linear-gradient(to bottom, var(--or), transparent); animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================================
   PAGE HERO (pages internes)
   ========================================================= */
.page-hero {
  min-height: 50vh; display: flex; align-items: center;
  padding: 140px 52px 80px; position: relative; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 30% 50%, rgba(201,168,76,0.07) 0%, transparent 70%); }
.page-hero-image { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.32; filter: grayscale(20%) brightness(0.95); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(14,17,23,0.38), rgba(14,17,23,0.18)); }
.page-hero-grid { position: absolute; inset: 0; background-image: repeating-linear-gradient(90deg, rgba(201,168,76,0.03) 0, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 100px); }
.page-hero-content { position: relative; z-index: 2; max-width: 720px; }
.page-hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.8rem, 8.5vw, 7.5rem);
  line-height: 0.92; letter-spacing: 0.04em; color: var(--txt-white); margin-bottom: 18px;
  animation: fadeUp 0.8s ease forwards;
}
.page-hero-content h1 .text-or { color: var(--or); }
.page-hero-content p { color: var(--txt-mid); font-size: 1.05rem; line-height: 1.8; font-weight: 300; opacity: 0; animation: fadeUp 0.8s ease forwards 0.2s; }

/* =========================================================
   SECTION LABELS & TITLES
   ========================================================= */
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.64rem; letter-spacing: 0.28em; color: var(--or);
  text-transform: uppercase; margin-bottom: 14px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::before { content: ''; width: 32px; height: 1px; background: var(--or); flex-shrink: 0; }
.section-label.centered { justify-content: center; }
.section-label.centered::before { display: none; }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 0.95; letter-spacing: 0.03em; color: var(--txt-white); margin-bottom: 20px;
}

/* =========================================================
   BOUTONS
   ========================================================= */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--or); color: var(--bg-deep);
  padding: 14px 36px; font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.12em;
  text-transform: uppercase; border-radius: 3px;
  transition: all 0.3s; border: 2px solid var(--or);
}
.btn-primary:hover {
  background: transparent; color: var(--or);
  transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,168,76,0.22);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04); color: var(--txt-light);
  padding: 14px 36px; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 3px; border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.35); transform: translateY(-2px); background: rgba(255,255,255,0.07); }

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 52px;
  display: flex; justify-content: center; gap: 80px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--or); letter-spacing: 0.04em; line-height: 1; }
.stat-label { font-size: 0.67rem; letter-spacing: 0.14em; color: var(--txt-muted); text-transform: uppercase; margin-top: 5px; font-family: 'Space Mono', monospace; }

/* =========================================================
   ICÔNES SVG PROFESSIONNELLES (remplace les emojis)
   ========================================================= */
.icon-svg {
  width: 44px; height: 44px; margin-bottom: 18px;
  background: var(--or-glow); border: 1px solid var(--border-hi);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-svg svg { width: 22px; height: 22px; fill: none; stroke: var(--or); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-svg.accent { background: rgba(58,140,255,0.12); border-color: rgba(58,140,255,0.3); }
.icon-svg.accent svg { stroke: var(--accent); }

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
}
.service-card {
  background: var(--bg-card); padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative; overflow: hidden; transition: all 0.35s;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--or), var(--or-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.service-card:hover { background: var(--bg-mid); transform: translateY(-3px); border-color: var(--border); }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scaleX(1); }
.service-card.featured-card { border-color: var(--border); background: linear-gradient(135deg, rgba(201,168,76,0.06), var(--bg-card)); }
.service-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--or); color: var(--bg-deep);
  font-family: 'Space Mono', monospace; font-size: 0.58rem;
  letter-spacing: 0.14em; padding: 3px 9px; border-radius: 2px;
  font-weight: 700; text-transform: uppercase;
}
.service-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.04em; color: var(--txt-white); margin-bottom: 10px; }
.service-description { font-size: 0.85rem; color: var(--txt-mid); line-height: 1.78; font-weight: 300; margin-bottom: 18px; }
.service-price { font-family: 'Space Mono', monospace; font-size: 0.8rem; color: var(--or); letter-spacing: 0.05em; }
.service-price.free { color: var(--success); }

/* Tabs services */
.tab-btn {
  padding: 10px 20px; background: transparent; border: none;
  color: var(--txt-muted); font-size: 0.78rem; letter-spacing: 0.06em;
  font-family: inherit; transition: all 0.3s; border-radius: 3px;
  font-weight: 500;
}
.tab-btn.active { background: var(--or); color: var(--bg-deep); font-weight: 700; }
.tab-btn:hover:not(.active) { color: var(--txt-light); background: rgba(255,255,255,0.05); }

/* =========================================================
   PRICING CARDS
   ========================================================= */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px;
  padding: 30px; position: relative; overflow: hidden; transition: all 0.3s;
}
.pricing-card:hover { border-color: var(--border-hi); transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.4); }
.pricing-card.featured { border-color: var(--or); background: linear-gradient(135deg, rgba(201,168,76,0.07), var(--bg-card)); }
.pricing-card.featured::before {
  content: 'POPULAIRE'; position: absolute; top: 16px; right: -30px;
  background: var(--or); color: var(--bg-deep); font-family: 'Space Mono', monospace;
  font-size: 0.52rem; letter-spacing: 0.14em; padding: 5px 40px;
  transform: rotate(45deg); font-weight: 700;
}
.pricing-category { font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.18em; color: var(--or); text-transform: uppercase; margin-bottom: 10px; }
.pricing-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; color: var(--txt-white); margin-bottom: 7px; letter-spacing: 0.04em; }
.pricing-amount { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--or); line-height: 1; letter-spacing: 0.02em; }
.pricing-unit { font-size: 0.76rem; color: var(--txt-muted); margin-top: 4px; margin-bottom: 20px; }
.pricing-features { display: flex; flex-direction: column; gap: 8px; }
.pricing-features li { font-size: 0.82rem; color: var(--txt-mid); display: flex; align-items: center; gap: 10px; }
.pricing-features li .feat-icon { width: 18px; height: 18px; flex-shrink: 0; }
.pricing-features li .feat-icon svg { width: 16px; height: 16px; stroke: var(--or); fill: none; stroke-width: 2; stroke-linecap: round; }

/* =========================================================
   GALERIE
   ========================================================= */
.gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 44px; }
.gallery-filter {
  padding: 8px 18px; background: transparent; border: 1px solid rgba(255,255,255,0.1);
  color: var(--txt-muted); font-size: 0.73rem; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 30px; transition: all 0.3s; font-family: inherit;
}
.gallery-filter.active { background: var(--or); color: var(--bg-deep); border-color: var(--or); font-weight: 700; }
.gallery-filter:hover:not(.active) { color: var(--txt-light); border-color: rgba(255,255,255,0.25); }
.gallery-masonry { columns: 3; column-gap: 4px; }
.gallery-item { break-inside: avoid; margin-bottom: 4px; position: relative; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; display: block; transition: transform 0.5s ease, filter 0.5s ease; filter: brightness(0.82) saturate(0.9); }
.gallery-item:hover img { transform: scale(1.04); filter: brightness(0.55) saturate(0.7); }
.gallery-item-info { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s; background: rgba(14,17,23,0.55); }
.gallery-item:hover .gallery-item-info { opacity: 1; }
.gallery-item-cat { font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.2em; color: var(--or); text-transform: uppercase; margin-bottom: 8px; }
.gallery-item-label { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; color: var(--txt-white); letter-spacing: 0.04em; }
.gallery-item-expand { width: 40px; height: 40px; border: 1px solid rgba(201,168,76,0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 12px; }
.gallery-item-expand svg { width: 16px; height: 16px; stroke: var(--or); fill: none; stroke-width: 2; }

/* Lightbox */
#lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 48px; }
#lightbox.open { display: flex; }
#lightbox img { max-width: 88vw; max-height: 86vh; object-fit: contain; border-radius: 3px; }
#lb-close { position: absolute; top: 22px; right: 30px; color: var(--txt-mid); cursor: pointer; background: none; border: none; transition: color 0.3s; }
#lb-close svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 2; }
#lb-close:hover { color: var(--or); }
#lb-caption { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); font-family: 'Space Mono', monospace; font-size: 0.68rem; letter-spacing: 0.15em; color: var(--txt-muted); text-transform: uppercase; white-space: nowrap; }
#lb-prev, #lb-next { position: absolute; top: 50%; transform: translateY(-50%); color: var(--txt-mid); cursor: pointer; background: rgba(14,17,23,0.7); border: 1px solid rgba(255,255,255,0.1); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
#lb-prev { left: 20px; }
#lb-next { right: 20px; }
#lb-prev svg, #lb-next svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
#lb-prev:hover, #lb-next:hover { color: var(--or); border-color: var(--or); }

/* =========================================================
   FORMULAIRES
   ========================================================= */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-family: 'Space Mono', monospace; font-size: 0.62rem; letter-spacing: 0.18em; color: var(--or); text-transform: uppercase; margin-bottom: 7px; }
.form-input, .form-textarea, .form-select,
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea, select {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09); border-radius: 4px;
  padding: 11px 15px; color: var(--txt-light);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.3s, background 0.3s;
}
input:focus, textarea:focus, select:focus { border-color: rgba(201,168,76,0.5); background: rgba(201,168,76,0.04); }
input::placeholder, textarea::placeholder { color: rgba(140,151,176,0.35); }
select option { background: var(--bg-card); color: var(--txt-light); }
textarea { resize: vertical; min-height: 110px; }
.form-submit, input[type="submit"] {
  width: 100%; background: var(--or); color: var(--bg-deep); border: none;
  padding: 15px; font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: 0.83rem; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; border-radius: 4px; transition: all 0.3s; margin-top: 6px;
}
.form-submit:hover, input[type="submit"]:hover { background: var(--or-light); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,168,76,0.3); }

/* =========================================================
   CALENDRIER / RÉSERVATION
   ========================================================= */
.booking-calendar {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
}
.cal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; background: var(--bg-mid); border-bottom: 1px solid var(--border);
}
.cal-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--txt-white); letter-spacing: 0.06em; }
.cal-nav { display: flex; gap: 6px; }
.cal-nav button { background: none; border: 1px solid var(--border); border-radius: 4px; color: var(--txt-mid); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.cal-nav button:hover { border-color: var(--or); color: var(--or); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; background: var(--border); }
.cal-day-label { background: var(--bg-mid); padding: 10px; text-align: center; font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.1em; color: var(--txt-muted); text-transform: uppercase; }
.cal-day { background: var(--bg-card); padding: 12px 8px; text-align: center; font-size: 0.85rem; color: var(--txt-mid); min-height: 52px; cursor: pointer; transition: all 0.2s; position: relative; }
.cal-day:hover { background: var(--bg-mid); color: var(--txt-light); }
.cal-day.available { color: var(--txt-white); }
.cal-day.available::after { content: ''; position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; background: var(--success); border-radius: 50%; }
.cal-day.booked { color: var(--txt-muted); cursor: not-allowed; text-decoration: line-through; }
.cal-day.booked::after { content: ''; position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; background: #e05454; border-radius: 50%; }
.cal-day.selected { background: var(--or-glow); color: var(--or); border: 1px solid var(--border-hi); }
.cal-day.other-month { opacity: 0.3; }
.cal-legend { display: flex; gap: 20px; padding: 14px 24px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.cal-legend-item { display: flex; align-items: center; gap: 7px; font-size: 0.75rem; color: var(--txt-muted); }
.cal-dot { width: 8px; height: 8px; border-radius: 50%; }
.cal-dot.green { background: var(--success); }
.cal-dot.red   { background: #e05454; }
.cal-dot.gold  { background: var(--or); }

/* =========================================================
   FOOTER
   ========================================================= */
#site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 44px 52px 32px;
}
.footer-top {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.footer-brand {}
.footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo-img { height: 40px; width: auto; object-fit: contain; }
.footer-brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.12em; color: var(--or); }
.footer-brand-name span { color: var(--txt-white); }
.footer-tagline { font-size: 0.8rem; color: var(--txt-muted); line-height: 1.65; margin-bottom: 16px; font-weight: 300; }
.footer-siret { font-family: 'Space Mono', monospace; font-size: 0.6rem; color: rgba(140,151,176,0.4); letter-spacing: 0.08em; }

.footer-col-title { font-family: 'Space Mono', monospace; font-size: 0.62rem; letter-spacing: 0.18em; color: var(--or); text-transform: uppercase; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.83rem; color: var(--txt-muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--or); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.footer-contact-icon { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-icon svg { width: 16px; height: 16px; stroke: var(--or); fill: none; stroke-width: 1.8; }
.footer-contact-text { font-size: 0.82rem; color: var(--txt-muted); line-height: 1.5; }
.footer-contact-text a:hover { color: var(--or); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.footer-copy { font-size: 0.75rem; color: var(--txt-muted); letter-spacing: 0.05em; }
.footer-kwitek {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.73rem; color: var(--txt-muted);
}
.footer-kwitek a { color: var(--txt-mid); transition: color 0.3s; font-weight: 500; }
.footer-kwitek a:hover { color: var(--or); }
.footer-kwitek-logo { height: 22px; width: auto; object-fit: contain; opacity: 0.75; transition: opacity 0.3s; }
.footer-kwitek:hover .footer-kwitek-logo { opacity: 1; }

/* =========================================================
   UTILITAIRES
   ========================================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 52px; }
.section-pad { padding: 96px 52px; }
.bg-deep  { background: var(--bg-deep); }
.bg-dark  { background: var(--bg-dark); }
.bg-mid   { background: var(--bg-mid); }
.text-or  { color: var(--or); }
.text-mid { color: var(--txt-mid); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.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; }

/* Offert strip */
.offert-strip {
  max-width: 1200px; margin: 48px auto 0;
  background: linear-gradient(135deg, rgba(46,184,122,0.07), rgba(201,168,76,0.05));
  border: 1px solid rgba(46,184,122,0.25); border-radius: 8px;
  padding: 26px 32px; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.offert-strip h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; color: var(--success); letter-spacing: 0.04em; margin-bottom: 4px; }
.offert-strip p { font-size: 0.82rem; color: var(--txt-muted); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================================
   RESPONSIVE COMPLET
   ========================================================= */
@media (max-width: 1200px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  #site-header { padding: 16px 24px; }
  #site-header.scrolled { padding: 12px 24px; }
  #primary-menu { display: none; }
  .nav-toggle { display: flex; }
  .section-pad { padding: 64px 24px; }
  .container { padding: 0 24px; }
  .hero-section { grid-template-columns: 1fr; }
  .hero-right { min-height: 50vh; }
  .hero-left { padding: 100px 28px 60px; }
  .page-hero { padding: 120px 24px 60px; }
  .stats-bar { gap: 36px; padding: 22px 24px; }
  .gallery-masonry { columns: 2; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  #site-footer { padding: 36px 24px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .page-hero-content h1 { font-size: 3.2rem; }
  .section-title { font-size: 2.6rem; }
  .gallery-masonry { columns: 1; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-logo { width: 86px; height: 86px; }
  .stats-bar { gap: 24px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 280px; justify-content: center; }
  #lb-prev, #lb-next { display: none; }
  .offert-strip { flex-direction: column; text-align: center; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 4rem; }
  .section-pad { padding: 48px 16px; }
  .container { padding: 0 16px; }
}

/* Tablette paysage */
@media (min-width: 641px) and (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Print */
@media print {
  #cursor-eq, #cursor-ring, #site-header { display: none; }
  body { cursor: auto; }
}


/* =========================================================
   V4 FIXES
   ========================================================= */

/* No site name text - logo contains it */
.site-logo-text { display: none !important; }

/* Bigger logo */
.site-logo img { width: 56px !important; height: 56px !important; border-radius: 50%; }

/* Prevent title line wrapping */
.hero-title { white-space: nowrap; overflow: visible; }
.section-title { white-space: nowrap; }
h1.page-title { white-space: nowrap; }

/* Larger prices everywhere */
.price-tag, .price-amount, .prix, [class*="price"] {
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  color: var(--or) !important;
}

/* Services grid - 2 columns */
.services-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 28px !important;
}

/* Better contrast on cards */
.service-card, .card {
  background: var(--bg-card) !important;
  border: 1px solid rgba(201,168,76,0.2) !important;
}

/* Larger paragraphs */
.hero-description, .section-text, p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--txt-mid);
}

/* Better button sizing */
.btn-primary, .btn-secondary {
  font-size: 0.92rem !important;
  padding: 14px 28px !important;
}

/* À propos - batterie image */
.about-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Galerie - masonry style matching v1 */
.gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 12px !important;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100% !important;
  height: 260px !important;
  object-fit: cover !important;
  transition: transform 0.4s ease !important;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.06) !important;
}

/* Titles - no orphan words */
.hero-title {
  font-size: clamp(3.5rem, 9vw, 8rem) !important;
  white-space: nowrap;
}

/* Name on one line */
.about-name, .tech-name {
  white-space: nowrap;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

/* Responsive fix for services 2-col */
@media (max-width: 700px) {
  .services-grid { grid-template-columns: 1fr !important; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .hero-title { white-space: normal !important; font-size: clamp(2.8rem, 12vw, 6rem) !important; }
}

/* =========================================================
   V4 FINAL — HERO + LOGO + AUDIO ANIMATIONS
   ========================================================= */

/* ── Logo ─────────────────────────────────────────── */
.site-logo { padding: 4px; }
.site-logo img {
  width: 72px !important;
  height: 72px !important;
  object-fit: contain !important;
  display: block !important;
  border-radius: 0 !important;
  background: transparent !important;
}
.site-logo-text { display: none !important; }

/* ── Header slightly lower ─────────────────────────── */
#site-header {
  top: 10px !important;
  background: rgba(14,17,23,0.85) !important;
  backdrop-filter: blur(14px) !important;
}

/* ── Hero pleine page (style v1) ─────────────────── */
.hero-v4 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-v4-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}
.hero-v4-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,17,23,0.55) 0%,
    rgba(14,17,23,0.40) 40%,
    rgba(14,17,23,0.65) 75%,
    rgba(14,17,23,0.90) 100%
  );
}
.hero-v4-content {
  position: relative;
  z-index: 10;
  max-width: 820px;
  padding: 140px 24px 80px;
  text-align: center;
  margin: 0 auto;
}
.hero-logo-wrap {
  margin-bottom: 28px;
}
.hero-logo-wrap img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  display: inline-block;
  filter: drop-shadow(0 0 24px rgba(201,168,76,0.5));
  animation: logoPulse 4s ease-in-out infinite;
}
@keyframes logoPulse {
  0%,100% { filter: drop-shadow(0 0 20px rgba(201,168,76,0.4)); }
  50%      { filter: drop-shadow(0 0 36px rgba(201,168,76,0.7)); }
}
.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 18px;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 13vw, 9.5rem);
  letter-spacing: 0.04em;
  line-height: 0.92;
  color: var(--txt-white);
  margin-bottom: 16px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.hero-subtitle {
  font-family: 'Space Mono', monospace;
  font-size: clamp(0.52rem, 1.1vw, 0.8rem);
  letter-spacing: clamp(0.06em, 0.18vw, 0.18em);
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 600px) {
  .hero-subtitle {
    white-space: normal;
    font-size: 0.52rem;
    letter-spacing: 0.06em;
    line-height: 1.8;
  }
}
.hero-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  margin-bottom: 32px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-contacts {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.hero-contacts a:hover { color: var(--or); }

/* ── ANIMATIONS AUDIO HERO ────────────────────────── */
.hero-audio-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

/* Equalizer bas de page */
.eq-hero {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding: 0 8%;
  opacity: 0.07;
}
.eq-hero-bar {
  flex: 1;
  max-width: 18px;
  background: linear-gradient(to top, var(--or), rgba(201,168,76,0.3));
  border-radius: 2px 2px 0 0;
  transform-origin: bottom;
  animation: eqBounce 1.6s ease-in-out infinite alternate;
  min-height: 4px;
}
@keyframes eqBounce {
  0%   { transform: scaleY(0.08); }
  25%  { transform: scaleY(0.55); }
  50%  { transform: scaleY(0.20); }
  75%  { transform: scaleY(0.80); }
  100% { transform: scaleY(0.35); }
}

/* Sound waves circulaires */
.soundwave-hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 600px;
  height: 600px;
}
.sw-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
  animation: swExpand 4s ease-out infinite;
}
.sw-ring-1 { width: 110px; height: 110px; animation-delay: 0s; }
.sw-ring-2 { width: 200px; height: 200px; animation-delay: 0.8s; }
.sw-ring-3 { width: 320px; height: 320px; animation-delay: 1.6s; }
.sw-ring-4 { width: 450px; height: 450px; animation-delay: 2.4s; }
.sw-ring-5 { width: 590px; height: 590px; animation-delay: 3.2s; }
@keyframes swExpand {
  0%   { opacity: 0.3; transform: translate(-50%,-50%) scale(0.85); }
  60%  { opacity: 0.12; }
  100% { opacity: 0;   transform: translate(-50%,-50%) scale(1.15); }
}

/* Lignes audio horizontales */
.audio-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.audio-line {
  position: absolute;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.15) 25%, rgba(201,168,76,0.25) 50%, rgba(201,168,76,0.15) 75%, transparent 100%);
  animation: linePulse 3s ease-in-out infinite alternate;
}
@keyframes linePulse {
  0%   { opacity: 0; transform: scaleX(0.3); }
  50%  { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0.3; transform: scaleX(0.7); }
}

/* ── Animations audio sur les page-hero (autres pages) */
.page-hero-audio {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.page-eq-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding: 0 10%;
  opacity: 0.06;
}
.page-eq-bar {
  flex: 1;
  max-width: 14px;
  background: linear-gradient(to top, var(--or), rgba(201,168,76,0.2));
  border-radius: 2px 2px 0 0;
  transform-origin: bottom;
  animation: eqBounce 1.8s ease-in-out infinite alternate;
  min-height: 3px;
}
.page-sw-wrap {
  position: absolute;
  bottom: 0; left: 8%;
  width: 300px; height: 300px;
  opacity: 0.06;
}
.page-sw-ring {
  position: absolute;
  bottom: 0; left: 0;
  border-radius: 50% 50% 0 0;
  border-top: 1px solid rgba(201,168,76,0.4);
  border-left: 1px solid rgba(201,168,76,0.4);
  border-right: 1px solid rgba(201,168,76,0.4);
  animation: pageSW 3.5s ease-out infinite;
}
.page-sw-ring:nth-child(1) { width: 80px; height: 80px; bottom: 0; left: 15px; animation-delay: 0s; }
.page-sw-ring:nth-child(2) { width: 160px; height: 80px; bottom: 0; left: -25px; animation-delay: 0.7s; }
.page-sw-ring:nth-child(3) { width: 260px; height: 130px; bottom: 0; left: -75px; animation-delay: 1.4s; }
@keyframes pageSW {
  0%   { opacity: 0.6; }
  100% { opacity: 0; transform: scaleY(1.3); }
}

/* ── Univers cards hover ─────────────────────────── */
.univers-card:hover .univers-bg {
  transform: scale(1.06) !important;
  filter: brightness(0.7) !important;
}

/* ── Scroll indicator ────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}
.scroll-indicator span {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.6));
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%,100% { opacity: 0; transform: scaleY(0) translateY(-10px); }
  50%      { opacity: 1; transform: scaleY(1) translateY(0); }
}

/* ── Services 2 col + 10e case vide pour esthétique */
.services-grid-v4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
/* 10 services = 5 lignes × 2 = pair. Ajouter une 11e case "bannière CTA" */

/* ── Prevent title line-breaks everywhere */
.hero-title,
.section-title,
h1.page-title,
.page-hero-content h1,
.page-hero h1,
.univers-card h3,
.service-card h3,
.about-name,
.step-title {
  white-space: nowrap;
  overflow: visible;
}
/* Nom KIPENZI ABDALLAH sur une ligne */
.about-name-v4 {
  white-space: nowrap !important;
  font-size: clamp(2.2rem, 4.5vw, 4rem) !important;
  line-height: 1 !important;
}

/* ── Competences / tags sur une ligne ─────────────── */
.skill-tag {
  display: inline-block;
  white-space: nowrap;
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--or);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 5px 12px;
  border-radius: 2px;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .hero-title { font-size: clamp(3.5rem,14vw,6rem) !important; white-space: normal !important; }
  .about-name-v4 { white-space: normal !important; font-size: clamp(2rem,8vw,3rem) !important; }
  .services-grid-v4 { grid-template-columns: 1fr !important; }
  .univers-card h3 { white-space: normal !important; }
  .page-hero-content h1 { white-space: normal !important; }
}

/* =========================================================
   V4.1 UPDATES — logo, hover, tarifs, form
   ========================================================= */

/* ── Logo 88px, bien visible ─────────────────────── */
.site-logo img {
  width: 88px !important;
  height: 88px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  background: transparent !important;
  filter: drop-shadow(0 0 12px rgba(201,168,76,0.35));
  transition: filter 0.3s;
}
.site-logo:hover img {
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.6));
}

/* ── HOVER EFFECTS — sections, cards, buttons, gallery ─── */

/* Cards hover */
.service-card,
.univers-card,
[style*="bg-card"],
div[style*="background:var(--bg-card)"],
div[style*="background:var(--bg-mid)"] {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}
div[style*="background:var(--bg-card)"]:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 32px rgba(0,0,0,0.35) !important;
  border-color: rgba(201,168,76,0.4) !important;
}

/* Boutons hover amélioré */
.btn-primary {
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
}
.btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px rgba(201,168,76,0.4) !important;
}
.btn-secondary {
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s !important;
}
.btn-secondary:hover {
  background: rgba(201,168,76,0.1) !important;
  border-color: var(--or) !important;
  color: var(--or) !important;
  transform: translateY(-2px) !important;
}

/* Galerie images hover */
.gal-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  overflow: hidden !important;
}
.gal-item:hover {
  transform: scale(1.02) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,0.5) !important;
}
.gal-item img {
  transition: transform 0.45s ease !important;
}
.gal-item:hover img {
  transform: scale(1.07) !important;
}

/* Sections hover (subtil) */
section {
  transition: background 0.4s ease;
}

/* Menu items hover */
#primary-menu a {
  transition: color 0.2s, border-bottom-color 0.2s !important;
  position: relative;
}
#primary-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--or);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
#primary-menu a:hover::after { transform: scaleX(1); }

/* Stat cards hover */
div[style*="padding:28px 20px;text-align:center"] {
  transition: background 0.2s;
}
div[style*="padding:28px 20px;text-align:center"]:hover {
  background: rgba(201,168,76,0.05) !important;
}

/* ── Tarifs — remettre les détails ─────────────────── */
/* Prix avec détail sous le prix principal */
.price-detail {
  font-size: 0.78rem;
  color: var(--txt-muted);
  font-family: 'Space Mono', monospace;
  margin-top: 4px;
  line-height: 1.5;
}

/* =========================================================
   V4.2 — RESPONSIVE COMPLET + LOGO OFFICIEL
   ========================================================= */

/* ── Logo officiel — 100px, visible ─────────────────── */
.site-logo img,
.site-logo .custom-logo {
  width: 110px !important;
  height: 110px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  background: transparent !important;
  display: block !important;
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.2));
}
.site-logo .custom-logo-link img { width: 100px !important; height: 100px !important; }

/* Supprimer le texte du nom de site si présent */
.site-logo-text,
.site-title,
.site-description { display: none !important; }

/* ── RESPONSIVE — Mobile first ──────────────────────── */

/* Tablette (≤1024px) */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }

  /* Hero */
  .hero-v4-content { padding: 120px 20px 60px; max-width: 96%; }
  .hero-title { font-size: clamp(3.5rem,10vw,6rem) !important; white-space: normal !important; }

  /* Stats 2×2 */
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2,1fr) !important;
  }

  /* Univers 1 colonne */
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  .univers-card { min-height: 320px !important; }

  /* About split → stack */
  div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Services 1 colonne */
  .services-grid-v4,
  div[style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Steps 2×2 */
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2,1fr) !important;
  }

  /* Page hero */
  .page-hero { min-height: 50vh !important; }
  .page-hero-content h1 { white-space: normal !important; font-size: clamp(2.2rem,8vw,4rem) !important; }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  /* Header */
  #site-header {
    padding: 8px 16px !important;
    height: auto !important;
    min-height: 68px;
  }
  .site-logo img, .site-logo .custom-logo {
    width: 68px !important;
    height: 68px !important;
  }

  /* Cache le menu desktop, affiche hamburger */
  #primary-nav { display: none !important; }
  .nav-toggle { display: flex !important; }

  /* Hero mobile */
  .hero-v4-content {
    padding: 100px 16px 60px !important;
    text-align: center;
  }
  .hero-title {
    font-size: clamp(2.8rem,13vw,5rem) !important;
    white-space: normal !important;
    line-height: 0.95 !important;
  }
  .hero-eyebrow { font-size: 0.58rem !important; }
  .hero-description {
  font-size: clamp(0.88rem, 1.6vw, 1.02rem) !important;
  display: block !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 640px !important;
  line-height: 1.85 !important;
}
@media (min-width: 769px) {
  .hero-description {
    max-width: 960px !important;
    font-size: 1rem !important;
    text-align: center !important;
  }
}
@media (min-width: 1100px) {
  .hero-description {
    font-size: 1.02rem !important;
  }
}
  .hero-buttons { flex-direction: column; align-items: center; gap: 10px !important; }
  .hero-contacts { display: none; }

  /* Stats 1×4 scroll */
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2,1fr) !important;
  }

  /* Sections padding */
  .section-pad { padding: 48px 0 !important; }
  .container { padding: 0 16px !important; }

  /* About: image height */
  div[style*="grid-template-columns:1fr 1fr"] img { height: 320px !important; }

  /* Services grid */
  .services-grid-v4,
  div[style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  /* Steps 1 col */
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Titres nowrap → wrap */
  h1, h2, h3,
  .hero-title, .section-title,
  .page-hero-content h1 {
    white-space: normal !important;
  }

  /* CTA section */
  div[style*="display:flex;gap:14px;justify-content:center"] {
    flex-direction: column !important;
    align-items: center !important;
  }

  /* Galerie: 2 colonnes */
  .gal-grid {
    grid-template-columns: repeat(2,1fr) !important;
  }

  /* Reservation form */
  #booking-form-wrap { padding: 12px !important; }
  div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Page hero */
  .page-hero { min-height: 44vh !important; }
  .page-hero-content { padding: 100px 16px 40px !important; }
  .page-hero-content h1 {
    font-size: clamp(2rem,10vw,3.2rem) !important;
    white-space: normal !important;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px !important; }

  /* Tabs services */
  .tab-btn { font-size: 0.72rem !important; padding: 8px 10px !important; }
  div[style*="display:flex;gap:4px"] { overflow-x: auto; flex-wrap: nowrap !important; }

  /* KIPENZI ABDALLAH title */
  .about-name-v4, h2[style*="white-space:nowrap"] {
    font-size: clamp(1.8rem,8vw,2.8rem) !important;
    white-space: normal !important;
  }
}

/* Smartphone très petit (≤375px) */
@media (max-width: 375px) {
  .hero-title { font-size: 2.6rem !important; }
  .site-logo img { width: 56px !important; height: 56px !important; }
  .gal-grid { grid-template-columns: 1fr !important; }
}

/* ── Menu hamburger mobile ────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 3px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--txt-white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Overlay mobile menu ──────────────────────────── */
#mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,12,18,0.97);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
#mobile-menu-overlay.open { transform: translateX(0); }
#mobile-menu-overlay a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--txt-white);
  text-decoration: none;
  transition: color 0.2s;
}
#mobile-menu-overlay a:hover { color: var(--or); }
.overlay-close {
  position: absolute;
  top: 20px; right: 20px;
  background: transparent;
  border: none;
  color: var(--txt-white);
  cursor: pointer;
  padding: 8px;
}

/* ── Galerie grid responsive ──────────────────────── */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 900px) { .gal-grid { grid-template-columns: repeat(2,1fr) !important; } }
@media (max-width: 480px) { .gal-grid { grid-template-columns: 1fr !important; } }

/* ── Footer logo officiel ────────────────────────── */
.footer-logo-img {
  width: 72px !important;
  height: 72px !important;
  object-fit: contain !important;
  background: transparent !important;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.2));
}

/* =========================================================
   V4.4 — MENU ACTIVE INDICATOR + TARIFS LISIBLES
   ========================================================= */

/* ── Menu : page active — indicateur onde sonore ──── */
#primary-menu li.current-menu-item > a,
#primary-menu li.current_page_item > a,
#primary-menu li.current-menu-ancestor > a {
  color: var(--or) !important;
  position: relative;
}

/* Barre active sous le lien */
#primary-menu li.current-menu-item > a::after,
#primary-menu li.current_page_item > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--or);
  transform: scaleX(1) !important;
  box-shadow: 0 0 8px rgba(201,168,76,0.6);
}

/* Onde sonore animée sous le lien actif */
#primary-menu li.current-menu-item > a::before,
#primary-menu li.current_page_item > a::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--or);
  box-shadow:
    0 0 0 3px rgba(201,168,76,0.25),
    0 0 0 6px rgba(201,168,76,0.1);
  animation: menuPulse 2s ease-in-out infinite;
}
@keyframes menuPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(201,168,76,0.25), 0 0 0 6px rgba(201,168,76,0.1); }
  50%      { box-shadow: 0 0 0 5px rgba(201,168,76,0.15), 0 0 0 10px rgba(201,168,76,0.05); }
}

/* =========================================================
   V4.4 — PRICING CARDS
   ========================================================= */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.featured-card {
  border-color: rgba(201,168,76,0.25) !important;
}
.pricing-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--txt-white);
  margin: 0 0 10px;
}
.pricing-card p {
  font-size: 0.88rem;
  color: var(--txt-muted);
  line-height: 1.65;
  flex: 1;
  margin: 0 0 18px;
}
.pricing-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  color: var(--or);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--txt-muted);
  margin-left: 4px;
}
.pricing-note {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--or);
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  padding: 5px 10px;
  border-radius: 999px;
  margin-top: 4px;
}
.pricing-badge {
  display: inline-block;
  background: var(--or);
  color: var(--bg-deep);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  width: fit-content;
}
.free-price {
  font-size: 1.8rem !important;
  color: var(--success) !important;
}

@media (max-width: 768px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ================================================================
   V5.1 — HEADER TRANSPARENT + LOGO + MENU EQUALIZER ACTIF
   ================================================================ */

/* Header transparent au chargement, fond au scroll */
#site-header {
  background: transparent !important;
  transition: background 0.4s ease, box-shadow 0.4s ease !important;
}
#site-header.scrolled {
  background: rgba(10,12,18,0.96) !important;
  box-shadow: 0 2px 24px rgba(0,0,0,0.5) !important;
  backdrop-filter: blur(12px) !important;
}

/* Logo 110px */
.site-logo img,
.site-logo .custom-logo,
.site-logo .custom-logo-link img {
  width: 110px !important;
  height: 110px !important;
}
@media (max-width: 768px) {
  .site-logo img,
  .site-logo .custom-logo {
    width: 76px !important;
    height: 76px !important;
  }
}

/* ── Menu : lien actif couleur or ──────────────────── */
#primary-menu li.current-menu-item > a,
#primary-menu li.current_page_item > a,
#primary-menu li.current-menu-ancestor > a {
  color: var(--or) !important;
  position: relative;
  padding-bottom: 16px !important;
}

/* Désactive ::after et ::before sur les liens actifs */
#primary-menu li.current-menu-item > a::after,
#primary-menu li.current_page_item > a::after,
#primary-menu li.current-menu-ancestor > a::after,
#primary-menu li.current-menu-item > a::before,
#primary-menu li.current_page_item > a::before,
#primary-menu li.current-menu-ancestor > a::before {
  display: none !important;
}

/* ── Equalizer : caché par défaut ──────────────────── */
.menu-eq {
  display: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  align-items: flex-end;
  gap: 2px;
  height: 12px;
  pointer-events: none;
}

/* Equalizer visible UNIQUEMENT sur le lien actif */
#primary-menu li.current-menu-item > a .menu-eq,
#primary-menu li.current_page_item > a .menu-eq,
#primary-menu li.current-menu-ancestor > a .menu-eq,
#primary-menu a.menu-link-active .menu-eq {
  display: flex !important;
}

/* Couleur or sur lien actif — double ciblage */
#primary-menu a.menu-link-active {
  color: var(--or) !important;
  position: relative;
  padding-bottom: 16px !important;
}
#primary-menu a.menu-link-active::after,
#primary-menu a.menu-link-active::before {
  display: none !important;
}

/* Barres de l'equalizer */
.menu-eq span {
  display: block;
  width: 2px;
  background: var(--or);
  border-radius: 1px;
  transform-origin: bottom;
  animation: eqPulse 1.4s ease-in-out infinite alternate;
}
.menu-eq span:nth-child(1) { height: 4px;  animation-delay: 0.00s; }
.menu-eq span:nth-child(2) { height: 9px;  animation-delay: 0.18s; }
.menu-eq span:nth-child(3) { height: 12px; animation-delay: 0.06s; }
.menu-eq span:nth-child(4) { height: 7px;  animation-delay: 0.28s; }
.menu-eq span:nth-child(5) { height: 10px; animation-delay: 0.10s; }
.menu-eq span:nth-child(6) { height: 5px;  animation-delay: 0.22s; }
.menu-eq span:nth-child(7) { height: 8px;  animation-delay: 0.14s; }

@keyframes eqPulse {
  0%   { transform: scaleY(0.25); opacity: 0.45; }
  100% { transform: scaleY(1);    opacity: 0.9;  }
}

/* Bouton CTA "Demander un devis" : pas d'equalizer, état actif conservé */
#primary-menu li.menu-cta.current-menu-item > a,
#primary-menu li.menu-cta.current_page_item > a {
  background: var(--or) !important;
  color: var(--bg-deep) !important;
  padding-bottom: 10px !important;
}
#primary-menu li.menu-cta > a .menu-eq {
  display: none !important;
}


/* ── Tarif tabs ────────────────────────────────────── */
.tarif-tab {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--txt-muted);
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
}
.tarif-tab:hover { border-color: var(--or); color: var(--or); }
.tarif-tab.active {
  background: var(--or);
  border-color: var(--or);
  color: var(--bg-deep);
  font-weight: 700;
}

/* ── Tarif cards ───────────────────────────────────── */
.tarif-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.tarif-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}
.featured-tarif {
  border-color: rgba(201,168,76,0.4) !important;
  background: rgba(201,168,76,0.06) !important;
}
.tarif-badge-corner {
  position: absolute;
  top: 16px; right: -22px;
  background: var(--or);
  color: var(--bg-deep);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 4px 32px;
  transform: rotate(35deg);
}
.tarif-cat {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--or);
  margin: 0 0 8px;
  opacity: 0.8;
}
.tarif-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--txt-white);
  margin: 0 0 12px;
}
.tarif-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--or);
  line-height: 1;
  margin-bottom: 4px;
}
.tarif-sub {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--txt-muted);
  margin: 0 0 16px;
}
.tarif-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}
.tarif-list li {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  padding-left: 18px;
  position: relative;
}
.tarif-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--or);
  font-size: 0.75rem;
}

@media (max-width: 900px) {
  #tarif-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 580px) {
  #tarif-grid { grid-template-columns: 1fr !important; }
  #tarif-tabs { gap: 6px; }
  .tarif-tab { font-size: 0.58rem; padding: 7px 10px; }
}

/* Services v4.6 — blocs structurés */
.svc-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.25s, transform 0.22s, box-shadow 0.22s;
  position: relative;
  overflow: hidden;
}
.svc-block:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.3);
}
.svc-block.svc-featured {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.05);
}
.svc-block-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--or);
  color: var(--bg-deep);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 0 10px 0 8px;
}
.svc-block-badge.badge-offert {
  background: var(--success);
  color: #fff;
}
.svc-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
  color: var(--or);
}
.svc-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--txt-white);
  margin: 0 0 10px;
}
.svc-features {
  list-style: none;
  padding: 0; margin: 0 0 18px;
  display: flex; flex-direction: column; gap: 5px;
  flex: 1;
}
.svc-features li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.58);
  padding-left: 16px;
  position: relative;
  line-height: 1.45;
}
.svc-features li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--or); font-size: 0.7rem;
}
.svc-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--or);
  line-height: 1;
}
.svc-price.price-offert { color: var(--success); font-size: 1.5rem; }
.svc-price-note {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  color: var(--txt-muted);
  margin-top: 4px;
  display: block;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1024px) { .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px)  { .svc-grid { grid-template-columns: 1fr; } }

/* CTA buttons in section */
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--or);
  color: var(--bg-deep) !important;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  padding: 14px 32px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: 2px solid var(--or);
}
.cta-btn-primary:hover {
  background: #b8962e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--txt-white) !important;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  padding: 14px 32px;
  border-radius: 3px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.cta-btn-outline:hover {
  border-color: var(--or);
  color: var(--or) !important;
  transform: translateY(-2px);
}

/* ── Privacy Policy page ───────────────────────────── */
.privacy-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--or);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.privacy-content p, .privacy-content li {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 10px;
}
.privacy-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.privacy-content a { color: var(--or); }
.privacy-content strong { color: var(--txt-white); }
.privacy-date {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--txt-muted);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

/* ── Cookie consent banner ─────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(16,20,28,0.97);
  border-top: 2px solid var(--or);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 9999;
  backdrop-filter: blur(12px);
  transform: translateY(0);
  transition: transform 0.4s ease;
}
#cookie-banner.hidden { transform: translateY(100%); }
#cookie-banner p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  max-width: 680px;
  line-height: 1.6;
}
#cookie-banner a { color: var(--or); }
#cookie-banner .cookie-btns { display:flex; gap:10px; flex-shrink:0; }
#cookie-accept {
  background: var(--or);
  color: var(--bg-deep);
  border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 10px 22px;
  border-radius: 3px;
  cursor: pointer;
}
#cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 10px 22px;
  border-radius: 3px;
  cursor: pointer;
}
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; }
}

/* ── V5 — Politique : titre entièrement visible ─────── */
.politique-title {
  font-size: clamp(1.8rem, 4.5vw, 3.8rem) !important;
  white-space: normal !important;
  overflow: visible !important;
  word-break: break-word !important;
  line-height: 1.05 !important;
}
@media (max-width: 768px) {
  .politique-title { font-size: clamp(1.5rem, 6vw, 2.5rem) !important; }
}

/* ================================================================
   V5.2 — RESPONSIVE MOBILE FIXES COMPLETS
   ================================================================ */

/* Global: prevent horizontal overflow on all pages */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
* { box-sizing: border-box; }

/* Hero: reduce padding on mobile */
@media (max-width: 768px) {
  .page-hero {
    padding: 100px 20px 60px !important;
    min-height: 44vh !important;
  }
  .page-hero-content h1 {
    font-size: clamp(2.2rem, 9vw, 3.5rem) !important;
  }
}
@media (max-width: 480px) {
  .page-hero {
    padding: 88px 16px 48px !important;
  }
}

/* Contact page: 2col → 1col on mobile */
@media (max-width: 768px) {
  .contact-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

/* Services grid: responsive */
@media (max-width: 768px) {
  .svc-grid {
    grid-template-columns: 1fr !important;
  }
  .tab-btn {
    font-size: 0.7rem !important;
    padding: 8px 12px !important;
  }
}

/* Tarif grid responsive */
@media (max-width: 768px) {
  #tarif-grid {
    grid-template-columns: 1fr !important;
  }
  #tarif-tabs {
    gap: 6px !important;
  }
  .tarif-tab {
    font-size: 0.6rem !important;
    padding: 6px 10px !important;
  }
}

/* Section padding reduced on mobile */
@media (max-width: 768px) {
  .section-pad {
    padding: 60px 20px !important;
  }
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* A propos / About page grids */
@media (max-width: 768px) {
  .about-grid,
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* Footer grid */
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}

/* Reservation / Devis forms */
@media (max-width: 600px) {
  .form-row,
  [style*="display:grid"][style*="1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  input, select, textarea {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Galerie masonry */
@media (max-width: 600px) {
  .masonry-grid {
    column-count: 1 !important;
  }
}

/* Politique de confidentialité title */
@media (max-width: 480px) {
  .politique-title {
    font-size: clamp(1.4rem, 7vw, 2rem) !important;
  }
}

/* Tables overflow */
table {
  max-width: 100%;
  overflow-x: auto;
  display: block;
}

/* Stats bar / numbers section */
@media (max-width: 640px) {
  .stats-bar,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}

/* ── V5.3 — Responsive Réservation + Devis ─────────── */
@media (max-width: 860px) {
  .resa-main-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .devis-main-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}
@media (max-width: 600px) {
  .resa-sub-grid,
  .devis-sub-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  /* Force all form inputs full width on mobile */
  .resa-main-grid input,
  .resa-main-grid select,
  .resa-main-grid textarea,
  .devis-main-grid input,
  .devis-main-grid select,
  .devis-main-grid textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* ── Devis — Prestations checkboxes (mobile-ready) ── */
.devis-prest-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.devis-prest-item:hover {
  border-color: rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.04);
}
.devis-prest-item input[type="checkbox"] {
  display: none;
}
.devis-prest-check {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.devis-prest-item input:checked ~ .devis-prest-check {
  background: var(--or);
  border-color: var(--or);
}
.devis-prest-item input:checked ~ .devis-prest-check::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #10141c;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px,-1px);
}
.devis-prest-label {
  font-size: 0.84rem;
  color: #cdd3e0;
  line-height: 1.45;
  flex: 1;
}
.devis-prest-item input:checked ~ .devis-prest-check + .devis-prest-label,
.devis-prest-item:has(input:checked) .devis-prest-label {
  color: #f4f0e8;
}
.devis-prest-item:has(input:checked) {
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.07);
}

/* ── V5.5 — Stat hover + Steps grid ────────────────── */
.stat-item {
  transition: background 0.25s, transform 0.25s;
  cursor: default;
}
.stat-item:hover {
  background: rgba(201,168,76,0.07) !important;
  transform: translateY(-3px);
}
.stat-item:hover > div:first-child {
  color: #e0bc6a !important;
}
@media (max-width: 680px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 420px) {
  .steps-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── v5.8.6 — Steps grid 3+3 + responsive ──────────────────────── */
.steps-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 860px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 520px) {
  .steps-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ── Fin v5.8.6 ─────────────────────────────────────────────────── */

/* ══════════════════════════════════════════════════════════════
   v5.8.8 — Stats cards avec compteur + bouton devis bannière
══════════════════════════════════════════════════════════════ */

/* ── Stats grid ────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-or);
  border-radius: 4px;
  overflow: hidden;
}

.stat-card {
  padding: 32px 20px 28px;
  text-align: center;
  position: relative;
  cursor: default;
  transition: background 0.35s ease, transform 0.35s ease;
  background: transparent;
}

.stat-card--border {
  border-right: 1px solid var(--border-or);
}

/* Hover : fond doré léger + légère élévation */
.stat-card:hover {
  background: rgba(201, 168, 76, 0.07);
  transform: translateY(-3px);
  z-index: 1;
}

.stat-card:hover .stat-icon-ring {
  background: rgba(201, 168, 76, 0.18);
  border-color: var(--or);
}

.stat-card:hover .stat-number,
.stat-card:hover .stat-count-text {
  text-shadow: 0 0 18px rgba(201, 168, 76, 0.5);
}

/* Icône */
.stat-icon-ring {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: background 0.35s ease, border-color 0.35s ease;
}

/* Chiffre */
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--or);
  letter-spacing: 0.04em;
  line-height: 1;
  transition: text-shadow 0.35s ease;
}

.stat-count-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--or);
  letter-spacing: 0.04em;
  line-height: 1;
}

.stat-suffix {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.0rem;
  color: var(--or);
  opacity: 0.8;
}

/* Label */
.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.60rem;
  letter-spacing: 0.16em;
  color: var(--txt-muted);
  text-transform: uppercase;
  margin-top: 8px;
}

/* Responsive stats */
@media (max-width: 680px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card:nth-child(2) {
    border-right: none;
  }
  .stat-card:nth-child(1),
  .stat-card:nth-child(2) {
    border-bottom: 1px solid var(--border-or);
  }
}
@media (max-width: 380px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-card--border {
    border-right: none;
    border-bottom: 1px solid var(--border-or);
  }
}

/* ── Bouton "Demander un devis" bannière offert ──────────────────── */
.btn-devis-offert {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: var(--bg-deep);
  background: var(--or);
  border: 2px solid var(--or);
  padding: 13px 26px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.25);
}

.btn-devis-offert::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-devis-offert:hover {
  background: transparent;
  color: var(--or);
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.45);
  transform: translateY(-2px);
}

.btn-devis-offert:hover::before {
  opacity: 1;
}

.btn-devis-offert:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(201, 168, 76, 0.3);
}

/* ── Fin v5.8.8 ─────────────────────────────────────────────────── */

/* ── v5.9.0 — Hero icônes contact & réseaux ────────────────────── */
.hero-social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.hero-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.30);
  background: rgba(201, 168, 76, 0.07);
  color: var(--or);
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease,
              transform 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-icon-link:hover {
  background: var(--or);
  border-color: var(--or);
  color: #10141C;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.hero-icon-link svg {
  flex-shrink: 0;
  transition: stroke 0.25s ease;
}

.hero-icon-link:hover svg {
  stroke: #10141C;
}
/* ── Fin v5.9.0 ─────────────────────────────────────────────────── */

/* ── v5.9.0 — Instagram icône dans hero-contacts ────────────────── */
.hero-insta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.07);
  color: var(--or);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.hero-insta-icon:hover {
  background: var(--or);
  border-color: var(--or);
  color: #10141C;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201,168,76,0.35);
}
.hero-insta-icon svg { flex-shrink: 0; transition: stroke 0.25s; }
.hero-insta-icon:hover svg { stroke: #10141C; }
/* ── Fin v5.9.0 ─────────────────────────────────────────────────── */
