/* ==========================================================================
   Partenaire Audiovisuel — Design System « Noir/Or »
   Palette : or #c9a84c · fond #07080a · texte #ede5d5
   Typo : Cormorant Garamond (titres) · Inter (corps)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Accent — or */
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --gold-border: rgba(201, 168, 76, 0.18);
  --gold-border-strong: rgba(201, 168, 76, 0.45);
  /* Fonds — noir profond */
  --dark: #07080a;
  --dark2: #0d0f12;
  --dark3: #131619;
  /* Texte */
  --text: #ede5d5;
  --muted: #6e6a60;
  --muted-light: #8a8578;
  /* Surfaces */
  --bg: #07080a;
  --bg-alt: #0d0f12;
  --bg-card: #0d0f12;
  --bg-input: rgba(255, 255, 255, 0.025);
  /* Élévation — shadows or-tinted */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 32px 72px rgba(0, 0, 0, 0.7);
  /* Rayon */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  /* Transitions */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --fast: .15s;
  --normal: .25s;
  --slow: .4s;
  /* Typographie */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  /* Layout */
  --max-width: 1140px;
  --nav-height: 66px;
}

/* --------------------------------------------------------------------------
   2. RESET + BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* Titres — serif, légers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  line-height: 1.2;
  color: var(--text);
  font-weight: 300;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: 1.25rem; font-weight: 400; }
h4 { font-size: 1.05rem; font-weight: 400; }

p + p { margin-top: .5em; }

/* Em phase — or italique (signature PA) */
h1 em, h2 em, h3 em, .sec-title em {
  color: var(--gold);
  font-style: italic;
}

/* Sélection */
::selection { background: var(--gold); color: var(--dark); }

/* --------------------------------------------------------------------------
   3. LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

section.alt { background: var(--bg-alt); }
section.gold-tint { background: rgba(201, 168, 76, 0.03); }

.center { text-align: center; }

/* Section header — style live */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--gold-border);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 300;
  margin-bottom: 8px;
  line-height: 1.15;
}

.section-subtitle {
  color: var(--muted);
  font-size: .95rem;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Grilles */
.grid2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.grid3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.grid4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Grilles responsives pour pages SEO */
.cards2, .cards3, .cards4 {
  display: grid;
  gap: 18px;
}

@media (min-width: 560px) {
  .cards2, .cards3, .cards4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 820px) {
  .cards3 { grid-template-columns: repeat(3, 1fr); }
  .cards4 { grid-template-columns: repeat(4, 1fr); }
}

.big-number {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

/* Cartes — fond sombre, bordure or */
.card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 28px;
  min-width: 0;
  transition: transform var(--normal) var(--ease-out), border-color var(--normal), box-shadow var(--normal);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border-strong);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201, 168, 76, 0.08);
}

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  font-size: .8rem;
  font-family: var(--sans);
  letter-spacing: .08em;
  border-radius: 4px;
  padding: 13px 22px;
  border: none;
  cursor: pointer;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: background var(--fast), transform var(--fast), box-shadow var(--fast);
  white-space: nowrap;
}

.btn:active { transform: scale(.97); }

/* Bouton primaire — or */
.btn-gold, .btn-blue, .btn-green {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover, .btn-blue:hover, .btn-green:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.25);
  transform: translateY(-2px);
}

/* Bouton outline */
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold-border-strong);
  transform: translateY(-2px);
}
.btn-white {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.btn-white:hover {
  background: var(--gold-dim);
  border-color: var(--gold-border-strong);
}

.btn-lg { padding: 16px 32px; font-size: .85rem; }
.btn-full { width: 100%; }
.btn-ghost { background: transparent; color: var(--gold); }
.btn-ghost:hover { background: var(--gold-dim); }

/* --------------------------------------------------------------------------
   4. SKIP LINK (a11y)
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gold);
  color: var(--dark);
  padding: 10px 18px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  z-index: 100;
  font-size: .85rem;
  transition: top var(--fast) var(--ease);
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   5. TOPBAR
   -------------------------------------------------------------------------- */
.topbar {
  background: rgba(7, 8, 10, 0.98);
  border-bottom: 1px solid var(--gold-border);
  color: var(--muted);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  padding: 7px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 24px;
  flex-wrap: wrap;
}

.topbar a { color: var(--gold); font-weight: 600; }
.topbar a:hover { opacity: .75; }
.topbar .topbar-badge {
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  padding: 3px 12px;
  font-size: .68rem;
  letter-spacing: .08em;
  color: var(--gold);
}

@media (max-width: 640px) {
  .topbar .topbar-badge { display: none; }
  .topbar-inner { gap: 6px 14px; }
}

/* --------------------------------------------------------------------------
   6. HEADER / NAV
   -------------------------------------------------------------------------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 8, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--normal), box-shadow var(--normal);
}

#site-header.scrolled {
  border-bottom-color: var(--gold-border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 16px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 300;
  font-family: var(--serif);
  color: var(--text);
  font-size: 1.15rem;
  letter-spacing: .03em;
  flex-shrink: 0;
}

.brand-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.3);
}

/* Nav links */
.main-nav {
  display: flex;
  gap: 4px;
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.main-nav a {
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 2px;
  transition: color var(--fast), background var(--fast);
}

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

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-tel {
  color: var(--gold);
  padding: 9px 15px;
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  font-weight: 500;
  font-size: .73rem;
  letter-spacing: .06em;
  transition: all var(--fast);
}

.nav-tel:hover { background: var(--gold-dim); border-color: var(--gold-border-strong); }

.nav-cta {
  font-size: .72rem !important;
  padding: 10px 16px !important;
  letter-spacing: .1em !important;
  text-transform: uppercase;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 60;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 1px;
  transition: transform var(--normal) var(--ease), opacity var(--normal) var(--ease);
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1060px) {
  .nav-actions { display: none; }
}

@media (max-width: 960px) {
  .main-nav, .nav-actions { display: none; }
  .hamburger { display: flex; }
}

/* --------------------------------------------------------------------------
   7. MOBILE MENU OVERLAY
   -------------------------------------------------------------------------- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(7, 8, 10, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--normal) var(--ease);
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(85vw, 380px);
  height: 100%;
  background: var(--dark);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  clip-path: inset(0 0 0 100%);
  transition: clip-path var(--normal) var(--ease);
  overflow-y: auto;
  border-left: 1px solid var(--gold-border);
}

.mobile-overlay.open .mobile-panel {
  clip-path: inset(0 0 0 0%);
}

.mobile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-close {
  background: none;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--muted);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--fast);
}

.mobile-close:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav a {
  padding: 14px 16px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 4px;
  font-size: .95rem;
  letter-spacing: .06em;
  transition: all var(--fast);
}

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

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   8. HERO
   -------------------------------------------------------------------------- */
.hero {
  background: var(--dark);
  color: var(--text);
  text-align: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -5%, rgba(201, 168, 76, 0.06) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(201, 168, 76, 0.02) 0%, transparent 60%);
  pointer-events: none;
}

/* Grille subtile en fond */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at center, black 20%, transparent 70%);
  pointer-events: none;
}

.hero .wrap { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-badge::before,
.hero-badge::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-border);
}

.hero h1 {
  font-family: var(--serif);
  color: var(--text);
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 300;
  max-width: 860px;
  margin: 0 auto 14px;
  text-wrap: balance;
  line-height: 1.05;
}

.hero .lead {
  font-family: var(--serif);
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  max-width: 620px;
  margin: 0 auto 32px;
  text-wrap: balance;
  letter-spacing: .04em;
}

/* KPIs */
.hero-kpis {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: inline-flex;
}

.hero-kpi {
  background: rgba(201, 168, 76, 0.03);
  padding: 18px 28px;
  min-width: 160px;
  text-align: center;
  position: relative;
}

.hero-kpi + .hero-kpi {
  border-left: 1px solid var(--gold-border);
}

.hero-kpi .kpi-value {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.hero-kpi .kpi-label {
  display: block;
  font-size: .68rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-ctas .btn-gold,
.hero-ctas .btn-outline {
  padding: 15px 32px;
  font-size: .72rem;
  letter-spacing: .14em;
}

/* Scroll hint */
.hero-scroll {
  margin-top: 48px;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  animation: bounce 2s infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold-border), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@media (max-width: 560px) {
  .hero { padding: 72px 0 56px; min-height: auto; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 300px; }
  .hero-kpis { flex-direction: column; }
  .hero-kpi + .hero-kpi { border-left: none; border-top: 1px solid var(--gold-border); }
  .hero-kpi { min-width: auto; padding: 14px 24px; }
  .hero-kpi .kpi-value { font-size: 1.5rem; }
}

/* --------------------------------------------------------------------------
   9. STATS / COUNTERS
   -------------------------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-card {
  background: var(--bg-card);
  padding: 32px 20px;
  text-align: center;
  position: relative;
  transition: background var(--normal);
}

.stat-card:hover { background: var(--dark3); }

.stat-card + .stat-card {
  border-left: 1px solid var(--gold-border);
}

.stat-card:nth-child(n+3) {
  border-top: 1px solid var(--gold-border);
}

.stat-card .stat-number {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-card h3 {
  font-size: .85rem;
  font-weight: 500;
  font-family: var(--sans);
  letter-spacing: .06em;
  margin: 6px 0 4px;
  color: var(--text);
}
.stat-card p { font-size: .78rem; color: var(--muted); }

/* Secteurs tags */
.sector-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}

.sector-tag {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  padding: 7px 16px;
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .08em;
  opacity: .65;
  transition: all var(--fast);
}

.sector-tag:hover {
  background: var(--gold-dim);
  border-color: var(--gold-border-strong);
  opacity: 1;
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat-card:nth-child(n+3) { border-top: none; }
  .stat-card:nth-child(3) { border-left: 1px solid var(--gold-border); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card + .stat-card { border-left: none; border-top: 1px solid var(--gold-border); }
}

/* --------------------------------------------------------------------------
   10. BRANDS / MARQUES
   -------------------------------------------------------------------------- */
.brands-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 28px 0;
  overflow: hidden;
}

.brands-label {
  text-align: center;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.brands-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.brand-logo {
  background: transparent;
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  padding: 9px 18px;
  font-weight: 500;
  color: var(--text);
  font-size: .78rem;
  letter-spacing: .04em;
  opacity: .6;
  white-space: nowrap;
  transition: all var(--fast);
}

.brand-logo:hover {
  opacity: 1;
  border-color: var(--gold-border-strong);
  background: var(--gold-dim);
}

/* --------------------------------------------------------------------------
   11. SERVICES
   -------------------------------------------------------------------------- */
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 34px 24px;
  transition: transform var(--slow) var(--ease-out), border-color var(--normal), box-shadow var(--normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.04), transparent);
  transition: left .6s;
  pointer-events: none;
}

.service-card:hover::before { left: 100%; }
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border-strong);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201, 168, 76, 0.08);
}

.service-card .svc-icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  transition: all var(--normal);
}

.service-card:hover .svc-icon {
  border-color: var(--gold-border-strong);
  background: rgba(201, 168, 76, 0.1);
}

.service-card .svc-bar {
  width: 18px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 12px;
  transition: width var(--normal);
}

.service-card:hover .svc-bar { width: 32px; }

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.service-card ul {
  list-style: none;
  margin: 0 0 20px;
  flex: 1;
}

.service-card li {
  font-size: .82rem;
  color: var(--muted);
  padding: 4px 0;
}

.service-card .btn { align-self: center; }

@media (min-width: 640px) {
  .grid3 { grid-template-columns: repeat(3, 1fr); }
  .grid2 { grid-template-columns: repeat(2, 1fr); }
}

/* --------------------------------------------------------------------------
   12. REALISATIONS
   -------------------------------------------------------------------------- */
.realisations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.real-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: #fff;
  border: 1px solid var(--gold-border);
  transition: transform var(--slow) var(--ease-out), border-color var(--normal), box-shadow var(--normal);
  background-size: cover;
  background-position: center;
  background-color: var(--bg-card);
}

.real-item:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border-strong);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(201, 168, 76, 0.08);
}

.real-item .real-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 8, 10, .85) 0%, rgba(7, 8, 10, .4) 60%, transparent 100%);
  transition: opacity var(--normal);
}

.real-item:hover .real-overlay { opacity: .9; }

.real-item .real-label {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: .02em;
}

/* Filtres galerie */
.filters-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--gold-border);
  padding: 8px 16px;
  border-radius: 2px;
  font-weight: 500;
  font-size: .72rem;
  font-family: var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--fast);
}

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

@media (min-width: 560px) {
  .realisations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 820px) {
  .realisations-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --------------------------------------------------------------------------
   13. PARTNERS CAROUSEL
   -------------------------------------------------------------------------- */
.partners {
  background: var(--bg-alt);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.partners-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0;
  scrollbar-width: none;
}

.partners-track::-webkit-scrollbar { display: none; }

.partner-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  padding: 13px 22px;
  font-weight: 500;
  color: var(--text);
  font-size: .82rem;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
  justify-content: center;
  opacity: .65;
  transition: all var(--fast);
}

.partner-card:hover {
  opacity: 1;
  border-color: var(--gold-border-strong);
  background: var(--gold-dim);
}

.partner-card .partner-icon {
  font-size: 1.3rem;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   14. TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials { background: var(--bg); }

.testimonials-slider {
  position: relative;
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  transition: transform .5s var(--ease-out);
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 0 8px;
}

.testimonial-card blockquote {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 28px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  position: relative;
}

.testimonial-card blockquote::before {
  content: """;
  position: absolute;
  top: 8px;
  left: 16px;
  font-size: 3.5rem;
  color: var(--gold-dim);
  font-weight: 300;
  line-height: 1;
  font-style: normal;
  font-family: Georgia, serif;
}

.testimonial-card .t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 0 8px;
}

.t-author .t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.t-author .t-name {
  font-weight: 500;
  color: var(--text);
  font-size: .9rem;
}

.t-author .t-role {
  font-size: .78rem;
  color: var(--muted);
}

/* Slider controls */
.testimonial-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}

.testimonial-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-border);
  border: none;
  cursor: pointer;
  transition: background var(--fast), transform var(--fast);
}

.testimonial-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* --------------------------------------------------------------------------
   15. ENGAGEMENTS
   -------------------------------------------------------------------------- */
.engagements-badges {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.engagement-badge {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 36px 28px 30px;
  text-align: center;
  min-width: 190px;
  flex: 1;
  max-width: 260px;
  transition: transform var(--normal) var(--ease-out), border-color var(--normal);
}

.engagement-badge:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border-strong);
}

.engagement-badge .eng-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  transition: all var(--normal);
}

.engagement-badge:hover .eng-icon {
  border-color: var(--gold-border-strong);
  background: rgba(201, 168, 76, 0.12);
}

.engagement-badge .eng-title {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}

.engagement-badge .eng-desc {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.6;
}

.engagement-badge .eng-badge-tag {
  display: inline-block;
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 5px 14px;
  border-radius: 2px;
  margin-top: 14px;
}

/* --------------------------------------------------------------------------
   16. FAQ
   -------------------------------------------------------------------------- */
.faq-search {
  position: relative;
  max-width: 500px;
  margin: 0 auto 24px;
}

.faq-search input {
  width: 100%;
  padding: 13px 44px 13px 18px;
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: .9rem;
  background: var(--bg-input);
  color: var(--text);
  transition: border-color var(--fast), background var(--fast);
}

.faq-search input:focus {
  outline: none;
  border-color: var(--gold-border-strong);
  background: rgba(201, 168, 76, 0.04);
}

.faq-search .faq-search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--gold);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq details {
  background: var(--bg-card);
  border-bottom: 1px solid var(--gold-border);
}

.faq details:last-child { border-bottom: none; }
.faq details[open] { background: var(--dark3); }

.faq summary {
  padding: 18px 24px;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: color var(--fast);
}

.faq summary:hover { color: var(--gold); }
.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--fast);
}

.faq details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq .faq-answer {
  padding: 0 24px 18px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7;
}

.faq .faq-hidden { display: none; }

/* --------------------------------------------------------------------------
   17. CONTACT / FORM
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.contact-form label {
  display: block;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 14px 0 6px;
}

.contact-form label .required {
  color: var(--gold);
  font-weight: 400;
  margin-left: 4px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: .9rem;
  background: var(--bg-input);
  color: var(--text);
  transition: border-color var(--fast), background var(--fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold-border-strong);
  background: rgba(201, 168, 76, 0.04);
}

.contact-form textarea { min-height: 100px; resize: vertical; }

.contact-form .btn { width: 100%; margin-top: 18px; }

.form-message {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 500;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
}

.form-message.error {
  display: block;
  background: rgba(220, 80, 80, 0.1);
  color: #e88888;
  border: 1px solid rgba(220, 80, 80, 0.2);
}

/* Contact info sidebar */
.contact-info .info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.contact-info .info-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info .info-text strong {
  display: block;
  color: var(--text);
  font-weight: 500;
  font-size: .88rem;
  margin-bottom: 2px;
}

.contact-info .info-text {
  color: var(--muted);
  font-size: .85rem;
}
.contact-info .info-text a { color: var(--gold); font-weight: 500; }
.contact-info .info-text a:hover { opacity: .7; }

@media (min-width: 820px) {
  .contact-grid { grid-template-columns: 1.1fr .9fr; }
}

/* --------------------------------------------------------------------------
   18. CTA SECTIONS
   -------------------------------------------------------------------------- */
.cta-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  color: var(--text);
  text-align: center;
  padding: 64px 0;
}

.cta-section h2 {
  font-family: var(--serif);
  color: var(--text);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  margin-bottom: 10px;
}

.cta-section p {
  color: var(--muted);
  font-size: .95rem;
  max-width: 560px;
  margin: 0 auto 24px;
}

.cta-section .cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-gold {
  font-size: .8rem;
  padding: 16px 32px;
  letter-spacing: .14em;
}

/* --------------------------------------------------------------------------
   19. PAGE BANNERS (sous-pages)
   -------------------------------------------------------------------------- */
.page-hero {
  background: var(--dark);
  color: var(--text);
  text-align: center;
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gold-border);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% -10%, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--serif);
  color: var(--text);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300;
  margin-bottom: 10px;
  position: relative;
}

.page-hero p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  font-family: var(--serif);
  font-weight: 300;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--muted);
  padding: 16px 0;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { opacity: .7; }
.breadcrumb .sep { color: var(--muted); }

/* Content prose */
.prose {
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.75;
}

.prose h2 {
  font-family: var(--serif);
  font-weight: 300;
  margin: 32px 0 14px;
}
.prose h3 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 22px 0 10px;
}
.prose p { margin-bottom: 14px; color: var(--muted); }
.prose ul, .prose ol { margin: 12px 0 18px 22px; }
.prose li { color: var(--muted); padding: 3px 0; }
.prose li::marker { color: var(--gold); }

/* --------------------------------------------------------------------------
   20. BLOG
   -------------------------------------------------------------------------- */
.blog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.blog-cats { display: flex; gap: 8px; flex-wrap: wrap; }

.blog-search input {
  padding: 10px 16px;
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  font-size: .82rem;
  font-family: var(--sans);
  width: 220px;
  max-width: 100%;
  background: var(--bg-input);
  color: var(--text);
}

.blog-search input:focus {
  outline: none;
  border-color: var(--gold-border-strong);
  background: rgba(201, 168, 76, 0.04);
}

.blog-cat-label {
  font-size: .68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 3px 10px;
  border-radius: 2px;
}

.blog-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.blog-card-tags span {
  font-size: .72rem;
  color: var(--muted-light);
}

/* Pagination blog */
.blog-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 36px;
}

.page-current, .page-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-weight: 500;
  font-size: .82rem;
  border: 1px solid var(--gold-border);
}

.page-current {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.page-disabled {
  color: var(--muted);
  background: transparent;
  opacity: .4;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--normal) var(--ease-out), border-color var(--normal), box-shadow var(--normal);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border-strong);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201, 168, 76, 0.08);
}

.blog-card-img {
  height: 200px;
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-border);
}

.blog-card-body { padding: 22px; }

.blog-card-body .blog-category {
  font-size: .68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 6px;
}

.blog-card-body h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.blog-card-body h3 a { color: var(--text); }
.blog-card-body h3 a:hover { color: var(--gold); }

.blog-card-body p {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.blog-card-meta {
  font-size: .76rem;
  color: var(--muted-light);
  display: flex;
  gap: 14px;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-sidebar .sidebar-block {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 22px;
}

.blog-sidebar h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--text);
}

.blog-sidebar .tag-cloud {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  padding: 5px 12px;
  font-size: .72rem;
  font-weight: 500;
  transition: all var(--fast);
}

.tag:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* Pagination */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 36px;
}

.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-weight: 500;
  font-size: .82rem;
  border: 1px solid var(--gold-border);
  transition: all var(--fast);
  color: var(--muted);
}

.pagination a:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.pagination .current { background: var(--gold); color: var(--dark); border-color: var(--gold); }

@media (min-width: 768px) {
  .blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 32px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid.cols2 { grid-template-columns: repeat(2, 1fr); }
}

/* Article post */
.article-header { text-align: center; margin-bottom: 32px; }
.article-header h1 { font-family: var(--serif); font-weight: 300; margin-bottom: 10px; }
.article-header .article-meta { color: var(--muted-light); font-size: .82rem; }

.article-content {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.75;
  font-size: .98rem;
}

.article-content p { color: var(--text); margin-bottom: 18px; }
.article-content h2 { font-family: var(--serif); font-weight: 300; margin: 36px 0 14px; }
.article-content h3 { font-family: var(--serif); font-weight: 400; margin: 24px 0 10px; }
.article-content ul, .article-content ol { margin: 12px 0 20px 22px; color: var(--muted); }
.article-content li { padding: 3px 0; }
.article-content blockquote {
  border-left: 3px solid var(--gold);
  margin: 20px 0;
  padding: 14px 20px;
  background: var(--gold-dim);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--muted);
}

/* Blog post — nouveau format */
.blog-post { padding: 0 0 48px; }

.blog-post-header {
  text-align: center;
  margin-bottom: 36px;
}

.blog-post-header h1 {
  font-family: var(--serif);
  font-weight: 300;
  margin: 14px 0 10px;
  font-size: 2rem;
}

.blog-post-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.blog-read-time { color: var(--muted-light); }

.blog-post-content {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.75;
  font-size: .98rem;
}

.blog-post-content h2 { font-family: var(--serif); font-weight: 300; font-size: 1.5rem; margin: 36px 0 14px; }
.blog-post-content h3 { font-family: var(--serif); font-weight: 400; font-size: 1.2rem; margin: 24px 0 10px; }
.blog-post-content p { color: var(--text); margin-bottom: 18px; }
.blog-post-content ul, .blog-post-content ol { margin: 12px 0 20px 22px; color: var(--muted); }
.blog-post-content li { padding: 3px 0; }

.blog-post-footer {
  max-width: 760px;
  margin: 40px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--gold-border);
}

.blog-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.blog-tags span {
  font-size: .7rem;
  font-weight: 500;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 4px 12px;
  border-radius: 2px;
}

.blog-post-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --------------------------------------------------------------------------
   21. FOOTER
   -------------------------------------------------------------------------- */
#site-footer {
  background: var(--dark);
  border-top: 1px solid var(--gold-border);
  color: var(--muted);
  padding: 52px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-col { min-width: 0; }

.footer-logo {
  font-family: var(--serif);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: .04em;
  margin-bottom: 10px;
}

.footer-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-weight: 500;
  font-size: .9rem;
  transition: all var(--fast);
}

.social-link:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.footer-heading {
  font-size: .72rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  font-size: .82rem;
  color: var(--muted);
  transition: color var(--fast);
}

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

.footer-contact .fc-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .82rem;
  color: var(--muted);
}

.fc-icon { font-size: 1rem; flex-shrink: 0; color: var(--gold); }

.fc-item strong { display: block; color: var(--text); margin-bottom: 2px; font-weight: 500; }
.fc-item a { color: var(--gold); font-weight: 500; }
.fc-item a:hover { opacity: .7; }

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--gold-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .78rem;
  color: var(--muted);
}

.footer-legal { display: flex; gap: 8px; align-items: center; }
.footer-legal a { color: var(--muted-light); }
.footer-legal a:hover { color: var(--gold); }

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .footer-grid { grid-template-columns: 1.3fr .9fr .9fr 1fr; }
}

/* --------------------------------------------------------------------------
   22. STICKY BUTTONS
   -------------------------------------------------------------------------- */
.sticky-buttons {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  font-family: var(--sans);
  letter-spacing: .08em;
  font-size: .78rem;
  border-radius: 50px;
  padding: 14px 22px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .5);
  transition: transform var(--fast), box-shadow var(--fast);
  white-space: nowrap;
  border: 1px solid var(--gold-border);
}

.sticky-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .6);
}

.sticky-devis {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.sticky-devis:hover { background: var(--gold-light); }

.sticky-call {
  background: var(--dark2);
  color: var(--gold);
}
.sticky-call:hover { background: var(--dark3); border-color: var(--gold-border-strong); }

.sticky-top {
  background: var(--dark2);
  color: var(--gold);
  border: 1px solid var(--gold-border);
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--normal), transform var(--fast);
}

.sticky-top.visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 480px) {
  .sticky-btn { padding: 12px 16px; font-size: .72rem; }
  .btn-lg { padding: 12px 20px; font-size: .82rem; max-width: 100%; box-sizing: border-box; white-space: normal; text-align: center; }
}

/* --------------------------------------------------------------------------
   23. LIGHTBOX
   -------------------------------------------------------------------------- */
.lb {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, .94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}

.lb.open { display: flex; }

.lb-content {
  background: var(--dark2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  max-width: 700px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.lb-image {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 300;
  font-family: var(--serif);
  background-size: cover;
  background-position: center;
  background-color: var(--dark);
  border-bottom: 1px solid var(--gold-border);
}

.lb-caption {
  padding: 20px 24px;
}

.lb-caption h3 {
  font-family: var(--serif);
  font-weight: 400;
  margin-bottom: 4px;
}
.lb-caption p { color: var(--muted); font-size: .88rem; }
.lb-counter {
  font-size: .7rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 4px;
  display: inline-block;
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--fast);
}

.lb-close:hover { background: var(--gold); color: var(--dark); }

.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--fast);
  line-height: 1;
}

.lb-prev:hover, .lb-next:hover {
  background: var(--gold-dim);
  border-color: var(--gold-border-strong);
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

@media (max-width: 560px) {
  .lb-image { height: 200px; }
  .lb-prev, .lb-next { width: 38px; height: 38px; font-size: 1.2rem; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

/* --------------------------------------------------------------------------
   24. ANIMATIONS (Intersection Observer)
   -------------------------------------------------------------------------- */
.fi {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.fade-up { transition-delay: .1s; }
.fade-up:nth-child(2) { transition-delay: .2s; }
.fade-up:nth-child(3) { transition-delay: .3s; }

/* Counter animation */
.counter { font-variant-numeric: tabular-nums; font-family: var(--serif); }

/* --------------------------------------------------------------------------
   25. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 14px; }
  .card { padding: 20px; }
  .hero-kpis { gap: 0; flex-direction: column; }
  .hero-kpi { min-width: auto; padding: 12px 16px; }
  .hero-kpi .kpi-value { font-size: 1.5rem; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   26. ACCESSIBILITY
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   27. PRINT
   -------------------------------------------------------------------------- */
@media print {
  #site-header, .topbar, .sticky-buttons, #site-footer, .mobile-overlay, .lb {
    display: none !important;
  }
  body { font-size: 12pt; color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .hero { background: none; color: #000; min-height: auto; }
  .hero h1 { color: #000; }
}

/* --------------------------------------------------------------------------
   28. AVIS / REVIEWS
   -------------------------------------------------------------------------- */
.avis-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 600px) {
  .avis-fields { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   29. TRUST BAR (secteurs)
   -------------------------------------------------------------------------- */
.trust-bar {
  background: rgba(201, 168, 76, 0.03);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 16px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-bar-label {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.trust-sectors {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-sector-tag {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--text);
  opacity: .55;
  padding: 5px 14px;
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  transition: all var(--fast);
}

.trust-sector-tag:hover {
  opacity: 1;
  background: var(--gold-dim);
  border-color: var(--gold-border-strong);
}
