/*
Theme Name: Chaviylah Mining
Theme URI: https://chaviylah-mining.com
Author: Chaviylah Mining
Author URI: https://chaviylah-mining.com
Description: Thème WordPress professionnel pour Chaviylah Mining – Forage Minier. Design noir et or entièrement modifiable via l'éditeur WordPress. Textes et images modifiables sans coder.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chaviylah-mining
Tags: business, mining, dark, custom-colors, custom-logo, featured-images, full-width-template
*/

/* =============================================
   VARIABLES CSS – Modifier les couleurs ici
============================================= */
:root {
  --gold: #D4AC3A;
  --gold-light: #E8C55E;
  --gold-pale: #F7EDB8;
  --gold-deep: #B08A18;
  --bg: #2E2E32;
  --bg-soft: #363639;
  --bg-card: #404044;
  --border: #525258;
  --gray-dark: #5A5A60;
  --gray-mid: #6E6E75;
  --gray-text: #AAAAB2;
  --white: #FFFFFF;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --container: 1200px;
  --section-pad: 100px 0;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }

/* =============================================
   UTILITAIRES
============================================= */
.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
.section { padding: var(--section-pad); }
.section-dark { background: var(--bg-soft); }
.section-card { background: var(--bg-card); }
.gold { color: var(--gold); }

.section-label {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--gray-text);
  max-width: 540px;
  line-height: 1.8;
}
.divider-gold { width: 60px; height: 3px; background: var(--gold); margin: 24px 0; }

/* =============================================
   BOUTONS
============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--bg) !important;
  padding: 16px 32px;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(212,172,58,0.4);
  color: var(--gold) !important;
  padding: 15px 30px;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(212,172,58,0.07); }

/* =============================================
   NAVIGATION
============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(28,28,30,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 40px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.site-branding { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.logo-icon {
  width: 42px; height: 42px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 24px; height: 24px; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white);
}
.logo-tagline {
  font-family: var(--font-cond);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}
.custom-logo { height: 58px; width: auto; }

/* Logo image Chaviylah – traitement visuel raffiné */
.site-logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(1.05) contrast(1.1) drop-shadow(0 2px 10px rgba(212,172,58,0.3));
  transition: filter 0.3s, transform 0.2s;
}
.site-logo-img:hover {
  filter: brightness(1.2) contrast(1.1) drop-shadow(0 2px 18px rgba(212,172,58,0.5));
  transform: scale(1.04);
}
.logo-link { text-decoration: none; display: block; }

/* Menu centré - style Sogedim */
.main-navigation {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.main-navigation ul { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.main-navigation a {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-text);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a { color: var(--gold); }

/* Bouton hamburger mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

/* =============================================
   HERO (Section d'accueil)
============================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
/* Image hero modifiable via Customizer > Image de couverture */
.hero-bg-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(28,28,30,0.97) 45%, rgba(28,28,30,0.45) 100%);
}
.hero-deco-line {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 40px 80px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gold);
  padding: 7px 16px;
  margin-bottom: 36px;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}
/* Titre hero – modifiable via Customizer ou Éditeur de page */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(58px, 9vw, 118px);
  line-height: 0.92;
  letter-spacing: 2px;
  max-width: 780px;
  margin-bottom: 32px;
}
.hero-title .accent {
  -webkit-text-stroke: 1px var(--gold);
  color: transparent;
  display: block;
}
.hero-desc {
  font-size: 17px;
  color: var(--gray-text);
  max-width: 460px;
  margin-bottom: 48px;
  line-height: 1.85;
}
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-num { font-family: var(--font-display); font-size: 44px; color: var(--gold); line-height: 1; }
.stat-label { font-family: var(--font-cond); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gray-text); margin-top: 4px; }

/* =============================================
   TICKER / BANDE DÉFILANTE
============================================= */
.ticker-bar { background: var(--gold); padding: 14px 0; overflow: hidden; }
.ticker-track { display: flex; animation: ticker 28s linear infinite; white-space: nowrap; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 20px; padding: 0 32px;
  font-family: var(--font-cond); font-size: 13px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--bg);
}
.ticker-item::before { content: ''; width: 5px; height: 5px; background: var(--bg); border-radius: 50%; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =============================================
   À PROPOS
============================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
/* Image modifiable via l'éditeur de page ou ACF */
.about-img { width: 100%; height: 520px; object-fit: cover; }
.about-badge-float {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold); padding: 20px 24px; min-width: 160px;
}
.about-badge-float .num { font-family: var(--font-display); font-size: 48px; color: var(--bg); line-height: 1; }
.about-badge-float .lbl { font-family: var(--font-cond); font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--bg); opacity: 0.7; margin-top: 2px; }
.about-text { font-size: 15px; color: var(--gray-text); line-height: 1.9; margin-bottom: 18px; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 28px 0 40px; }
.about-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: var(--gray-text); }
.about-list li::before { content: ''; flex-shrink: 0; width: 18px; height: 2px; background: var(--gold); margin-top: 12px; }

/* =============================================
   SERVICES
============================================= */
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; gap: 40px; flex-wrap: wrap; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
.service-card {
  background: var(--bg-card); padding: 44px 36px;
  position: relative; overflow: hidden; transition: background 0.3s;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.service-card:hover { background: #323236; }
.service-card:hover::after { transform: scaleX(1); }
.service-num { font-family: var(--font-display); font-size: 13px; letter-spacing: 3px; color: var(--gold); margin-bottom: 20px; opacity: 0.7; }
.service-icon { width: 52px; height: 52px; margin-bottom: 22px; }
.service-icon svg { width: 100%; height: 100%; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.service-title { font-family: var(--font-display); font-size: 26px; letter-spacing: 1px; color: var(--white); margin-bottom: 14px; }
.service-desc { font-size: 14px; color: var(--gray-text); line-height: 1.8; margin-bottom: 28px; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-cond); font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid rgba(212,172,58,0.3); padding-bottom: 2px; transition: border-color 0.2s;
}
.service-link:hover { border-color: var(--gold); }

/* =============================================
   GALERIE – Modifiable via la bibliothèque de médias WordPress
============================================= */
.gallery-header { text-align: center; margin-bottom: 56px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: 3px; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; background: var(--bg-card); }
.gallery-item--large { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s, opacity 0.3s; opacity: 0.78; }
.gallery-item--large img { height: 443px; }
.gallery-item:hover img { transform: scale(1.05); opacity: 1; }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(28,28,30,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-plus { width: 48px; height: 48px; border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; }
.gallery-plus svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; }

/* =============================================
   CHIFFRES CLÉS
============================================= */
.numbers-section { background: var(--gold); padding: 80px 0; }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(0,0,0,0.12); }
.number-item { background: var(--gold); padding: 44px 32px; text-align: center; }
.number-value { font-family: var(--font-display); font-size: 68px; color: var(--bg); line-height: 1; letter-spacing: 2px; }
.number-label { font-family: var(--font-cond); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--bg); opacity: 0.65; margin-top: 8px; }

/* =============================================
   TÉMOIGNAGES
============================================= */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 36px 32px; position: relative;
}
.testimonial-card::before {
  content: '"'; font-family: var(--font-display); font-size: 96px;
  color: var(--gold); opacity: 0.12; position: absolute; top: 12px; left: 24px; line-height: 1;
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testimonial-stars svg { width: 14px; height: 14px; fill: var(--gold); }
.testimonial-text { font-size: 15px; color: var(--gray-text); line-height: 1.85; margin-bottom: 28px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--border); padding-top: 22px; }
.testimonial-avatar { width: 42px; height: 42px; border: 1.5px solid var(--gold); overflow: hidden; flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-initials { width: 42px; height: 42px; background: var(--gray-dark); border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 16px; color: var(--gold); flex-shrink: 0; }
.testimonial-name { font-family: var(--font-cond); font-weight: 600; font-size: 15px; color: var(--white); letter-spacing: 1px; }
.testimonial-role { font-size: 12px; color: var(--gray-text); margin-top: 2px; }

/* =============================================
   CONTACT & FORMULAIRE
============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.contact-detail:last-of-type { border-bottom: none; }
.contact-icon { width: 44px; height: 44px; background: rgba(212,172,58,0.1); border: 1px solid rgba(212,172,58,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; }
.contact-label { font-family: var(--font-cond); font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-value { font-size: 15px; color: var(--white); line-height: 1.6; }

/* Formulaire Contact Form 7 & styles natifs */
.wpcf7-form, .contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label, .wpcf7-form label {
  font-family: var(--font-cond);
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gray-text);
}
input[type="text"], input[type="email"], input[type="tel"], input[type="url"],
select, textarea,
.wpcf7-text, .wpcf7-email, .wpcf7-tel, .wpcf7-textarea, .wpcf7-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { min-height: 140px; resize: vertical; }
input[type="submit"], .wpcf7-submit, .form-submit {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--gold); color: var(--bg);
  padding: 18px 36px;
  font-family: var(--font-cond); font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border: none; cursor: pointer; width: 100%; transition: background 0.2s;
}
input[type="submit"]:hover, .wpcf7-submit:hover { background: var(--gold-light); }

/* =============================================
   FOOTER
============================================= */
.site-footer { background: #28282C; border-top: 1px solid var(--border); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 60px; border-bottom: 1px solid var(--border); }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.footer-logo-box { width: 36px; height: 36px; background: var(--gold); display: flex; align-items: center; justify-content: center; }
.footer-logo-box svg { width: 20px; height: 20px; }
.footer-logo-name { font-family: var(--font-display); font-size: 20px; letter-spacing: 2px; color: var(--white); }
.footer-desc { font-size: 14px; color: var(--gray-text); line-height: 1.8; max-width: 280px; margin-bottom: 28px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, background 0.2s; }
.social-btn:hover { border-color: var(--gold); background: rgba(212,172,58,0.08); }
.social-btn svg { width: 16px; height: 16px; fill: var(--gray-text); transition: fill 0.2s; }
.social-btn:hover svg { fill: var(--gold); }
.footer-col-title { font-family: var(--font-cond); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--gray-text); transition: color 0.2s, padding-left 0.2s; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--white); padding-left: 6px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; gap: 20px; flex-wrap: wrap; }
.footer-copy { font-size: 12px; color: var(--gray-text); font-family: var(--font-cond); letter-spacing: 1px; }
.footer-legal-links { display: flex; gap: 24px; list-style: none; }
.footer-legal-links a { font-size: 12px; color: var(--gray-text); font-family: var(--font-cond); letter-spacing: 1px; transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--gold); }

/* =============================================
   ZONES D'INTERVENTION + CARTE
============================================= */
.zones-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; }
.zones-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px; }
.zone-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 14px 16px;
  transition: border-color 0.2s;
}
.zone-item:hover { border-color: var(--gold); }
.zone-flag { font-size: 22px; flex-shrink: 0; }
.zone-name { font-family: var(--font-cond); font-size: 14px; font-weight: 700; letter-spacing: 1px; color: var(--white); }
.zone-status { font-size: 11px; color: var(--gold); letter-spacing: 1px; margin-top: 2px; }
.map-wrapper { position: relative; height: 100%; min-height: 480px; border: 1px solid var(--border); overflow: hidden; }
.map-wrapper iframe { display: block; width: 100%; height: 100%; min-height: 480px; filter: grayscale(30%) contrast(1.05); }
.map-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--gold); color: var(--bg);
  padding: 8px 16px;
  font-family: var(--font-cond); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--large { grid-column: span 2; grid-row: span 1; }
  .gallery-item--large img { height: 300px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .zones-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 70px 0; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .main-navigation { display: none; }
  .nav-toggle { display: flex; }
  .about-grid, .contact-grid, .zones-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge-float { right: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .zones-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-title { font-size: clamp(50px, 14vw, 80px); }
  .hero-stats { gap: 28px; }
}

/* =============================================
   LOGO WATERMARK SUR IMAGES
============================================= */
.img-logo-wrap { position: relative; display: block; }
.img-logo-wrap .logo-watermark {
  position: absolute;
  bottom: 12px; right: 12px;
  height: 34px; width: auto;
  opacity: 0.85;
  filter: brightness(1.1) drop-shadow(0 1px 4px rgba(0,0,0,0.7));
  pointer-events: none;
  z-index: 5;
}

/* =============================================
   BANNIÈRE STYLE ABCamDrillco
============================================= */
.article-banner {
  position: relative;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.article-banner-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
}
.article-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(28,28,30,0.88) 0%, rgba(28,28,30,0.45) 60%, rgba(28,28,30,0.1) 100%);
}
.article-banner-content {
  position: relative; z-index: 2;
  padding: 0 60px 44px;
  width: 100%;
}
.article-banner-logo {
  height: 50px; width: auto;
  margin-bottom: 16px;
  filter: brightness(1.1) drop-shadow(0 2px 8px rgba(0,0,0,0.6));
  display: block;
}
.article-banner-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.article-banner-title span { color: var(--gold); }
.article-banner-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-cond);
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.article-banner-breadcrumb .sep { color: var(--gold); }
.article-banner-breadcrumb .active { color: var(--gold); font-weight: 700; }
