/* ─── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary:       #E0201A;
  --primary-light: #FF4D3D;
  --primary-pale:  rgba(224,32,26,0.08);
  --bg:            #FFFFFF;
  --bg-alt:        #F7F7F8;
  --bg-card:       #FFFFFF;
  --ink:           #0F0F0F;
  --ink-mid:       #3A3A3A;
  --ink-dim:       #6B6B6B;
  --slate:         #5A6A80;
  --border:        rgba(224,32,26,0.18);
  --border-subtle: rgba(0,0,0,0.08);
  --shadow:        0 16px 48px rgba(0,0,0,0.10);

  /* aliases pour compatibilité avec le CSS existant */
  --gold:        var(--primary);
  --gold-light:  var(--primary-light);
  --gold-pale:   var(--primary-pale);
  --navy:        var(--bg);
  --navy-mid:    var(--bg-alt);
  --navy-light:  #ECECEC;
  --white:       var(--ink);
  --white-dim:   var(--ink-mid);
  --white-faint: rgba(0,0,0,0.04);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}
::selection { background: var(--primary); color: #fff; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── CUSTOM CURSOR ─────────────────────────────────────────────── */
#cursor {
  position: fixed; top: 0; left: 0; width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%; pointer-events: none;
  transform: translate(-50%, -50%); z-index: 9999;
  transition: transform 0.08s, width 0.25s, height 0.25s, background 0.25s;
  mix-blend-mode: normal;
}
#cursor-ring {
  position: fixed; top: 0; left: 0; width: 36px; height: 36px;
  border: 1px solid rgba(224,32,26,0.55); border-radius: 50%;
  pointer-events: none; transform: translate(-50%, -50%); z-index: 9998;
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1),
              width 0.35s, height 0.35s, opacity 0.3s;
}
body:has(a:hover) #cursor, body:has(button:hover) #cursor { width: 6px; height: 6px; }
body:has(a:hover) #cursor-ring, body:has(button:hover) #cursor-ring { width: 52px; height: 52px; opacity: 0.6; }

/* ─── SCROLLBAR ─────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ─── NAV ───────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 5%;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
nav {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
nav.scrolled {
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 5%;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-logo {
  display: flex; align-items: center;
}
.nav-logo-img { height: 48px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; color: rgba(0,0,0,0.55);
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1px; background: var(--primary);
  transition: width 0.35s cubic-bezier(0.23,1,0.32,1);
}
.nav-links a:hover { color: #0F0F0F; }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after { width: 100%; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 24px; border: 1px solid var(--gold);
  color: var(--gold) !important; font-size: 0.75rem !important;
  letter-spacing: 0.16em !important; text-transform: uppercase;
  transition: background 0.3s, color 0.3s !important;
  border-radius: 0;
}
.nav-cta:hover { background: var(--primary) !important; color: #fff !important; }
.nav-cta::after { display: none !important; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 1px; background: #0F0F0F;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu {
  display: none; position: fixed; inset: 0; background: #0F0F0F;
  z-index: 99; flex-direction: column; align-items: center;
  justify-content: center; gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300; color: rgba(248,245,239,0.65);
  letter-spacing: 0.04em; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-close {
  position: absolute; top: 24px; right: 5%;
  background: none; border: none; color: #F8F5EF;
  font-size: 1.5rem; cursor: none;
}

/* ─── HERO ──────────────────────────────────────────────────────── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding: 88px 5% 0;
  background: #FFFFFF;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 40%, rgba(224,32,26,0.06) 0%, transparent 70%);
}
.hero-geo {
  position: absolute; right: -4%; top: 8%;
  width: min(680px, 60vw); height: min(680px, 60vw);
  opacity: 0.07;
}
.hero-geo-inner {
  width: 100%; height: 100%;
  border: 1px solid var(--gold);
  border-radius: 50%;
  animation: heroRotate 30s linear infinite;
}
.hero-geo-inner::before, .hero-geo-inner::after {
  content: ''; position: absolute;
  border: 1px solid var(--gold); border-radius: 50%;
}
.hero-geo-inner::before { inset: 15%; }
.hero-geo-inner::after  { inset: 30%; }
@keyframes heroRotate { to { transform: rotate(360deg); } }

/* Kente-inspired decorative strip */
.hero-kente {
  position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: repeating-linear-gradient(
    180deg,
    #F8F5EF 0px, #F8F5EF 8px,
    transparent 8px, transparent 14px,
    #E0201A 14px, #E0201A 22px,
    transparent 22px, transparent 28px
  );
  opacity: 0.8;
}
.hero-kente-r {
  position: absolute; right: 0; top: 0; bottom: 0; width: 5px;
  background: repeating-linear-gradient(
    180deg,
    #F8F5EF 0px, #F8F5EF 8px,
    transparent 8px, transparent 14px,
    #E0201A 14px, #E0201A 22px,
    transparent 22px, transparent 28px
  );
  opacity: 0.4;
}

/* Canvas particles */
#hero-canvas {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
}
.hero-label {
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.9s 0.2s cubic-bezier(0.23,1,0.32,1) forwards;
}
.hero-label::before {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.0; letter-spacing: -0.01em;
  color: #0F0F0F;
  opacity: 0; animation: fadeUp 1s 0.4s cubic-bezier(0.23,1,0.32,1) forwards;
}
.hero-h1 em {
  font-style: italic; color: var(--gold);
  font-weight: 400;
}
.hero-tagline {
  margin-top: 28px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  color: rgba(0,0,0,0.5); font-weight: 300; letter-spacing: 0.02em;
  opacity: 0; animation: fadeUp 1s 0.6s cubic-bezier(0.23,1,0.32,1) forwards;
}
.hero-divider {
  width: 60px; height: 1px; background: var(--gold);
  margin: 32px 0;
  opacity: 0; animation: fadeUp 1s 0.75s cubic-bezier(0.23,1,0.32,1) forwards;
}
.hero-desc {
  font-size: 0.98rem; line-height: 1.75; color: rgba(0,0,0,0.55);
  max-width: 520px; font-weight: 300;
  opacity: 0; animation: fadeUp 1s 0.85s cubic-bezier(0.23,1,0.32,1) forwards;
}
.hero-ctas {
  margin-top: 44px; display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s 1s cubic-bezier(0.23,1,0.32,1) forwards;
}
.btn-primary {
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; font-family: 'Jost', sans-serif;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; border: none; cursor: none;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(224,32,26,0.35); }
.btn-outline {
  padding: 16px 40px;
  border: 1px solid rgba(0,0,0,0.25); color: #0F0F0F;
  font-family: 'Jost', sans-serif; font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  background: transparent; cursor: none;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold); background: var(--gold-pale); color: var(--gold);
}
.hero-scroll {
  position: absolute; bottom: 48px; left: 5%;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  opacity: 0; animation: fadeUp 1s 1.3s forwards;
}
.hero-scroll-line {
  width: 1px; height: 50px; background: var(--gold);
  transform-origin: top; animation: scrollLine 1.8s 1.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); opacity: 0; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── SECTION SHARED ─────────────────────────────────────────────── */
section { padding: 120px 5%; position: relative; scroll-margin-top: 70px; }
.section-label {
  font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.section-label::before {
  content: ''; width: 30px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.23,1,0.32,1), transform 0.8s cubic-bezier(0.23,1,0.32,1); }
.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; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ─── ABOUT ──────────────────────────────────────────────────────── */
#about {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 60px;
}
.about-text p {
  font-size: 1rem; line-height: 1.85; color: var(--white-dim);
  font-weight: 300; margin-bottom: 20px;
}
.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.about-pillar {
  padding: 28px; border: 1px solid var(--border);
  background: var(--white-faint);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.about-pillar::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--gold);
  transition: height 0.4s cubic-bezier(0.23,1,0.32,1);
}
.about-pillar:hover { border-color: var(--gold); background: rgba(224,32,26,0.06); transform: translateY(-4px); }
.about-pillar:hover::before { height: 100%; }
.about-pillar-icon {
  width: 38px; height: 38px; margin-bottom: 16px;
  color: var(--gold);
}
.about-pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600; margin-bottom: 8px;
}
.about-pillar p { font-size: 0.88rem; line-height: 1.65; color: var(--white-dim); font-weight: 300; }
.reg-badge {
  margin-top: 32px; display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border: 1px solid var(--border);
  font-size: 0.72rem; letter-spacing: 0.1em; color: var(--gold);
}

/* ─── SERVICES ───────────────────────────────────────────────────── */
#services { background: var(--navy); }
.services-intro {
  max-width: 640px; margin-top: 24px; margin-bottom: 60px;
  font-size: 1rem; line-height: 1.8; color: var(--white-dim); font-weight: 300;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.service-card {
  padding: 48px 36px;
  background: var(--navy-mid);
  border: 1px solid rgba(224,32,26,0.1);
  position: relative; overflow: hidden;
  transition: background 0.4s, border-color 0.4s;
  cursor: default;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(224,32,26,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { background: var(--navy-light); border-color: var(--gold); }
.service-card:hover::before { opacity: 1; }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 700; color: rgba(224,32,26,0.35);
  line-height: 1; margin-bottom: 24px;
  transition: color 0.4s;
}
.service-card:hover .service-num { color: rgba(224,32,26,0.7); }
.service-icon { width: 44px; height: 44px; color: var(--gold); margin-bottom: 20px; }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600; margin-bottom: 14px;
  line-height: 1.2;
}
.service-card p { font-size: 0.88rem; line-height: 1.7; color: var(--white-dim); font-weight: 300; }
.service-card .service-arrow {
  position: absolute; bottom: 28px; right: 28px;
  width: 24px; height: 24px; color: var(--gold); opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover .service-arrow { opacity: 1; transform: translate(4px, -4px); }

/* ─── VALEURS ────────────────────────────────────────────────────── */
#valeurs {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
}
.valeurs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; margin-top: 60px;
}
.valeur-card {
  position: relative; padding: 40px 28px 36px;
  border-top: 2px solid var(--border);
  transition: border-color 0.3s;
}
.valeur-card:hover { border-color: var(--gold); }
.valeur-icon { width: 40px; height: 40px; color: var(--gold); margin-bottom: 24px; }
.valeur-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600; margin-bottom: 14px;
}
.valeur-card p { font-size: 0.88rem; line-height: 1.7; color: var(--white-dim); font-weight: 300; }

/* ─── GALERIE ────────────────────────────────────────────────────── */
#galerie { background: var(--navy); overflow: hidden; }
.gallery-heading { max-width: 640px; }
.gallery-track-wrap {
  margin-top: 60px; position: relative;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 12px;
}
.gallery-item {
  position: relative; overflow: hidden;
  background: #e0e0e0;
  border-radius: 4px;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.35s;
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: #fff; font-weight: 500;
}

/* ─── POURQUOI ───────────────────────────────────────────────────── */
#pourquoi {
  background: linear-gradient(160deg, #ECECEC 0%, #F7F7F8 100%);
  border-top: 1px solid var(--border);
}
.pourquoi-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; margin-top: 60px;
}
.pourquoi-intro {
  font-size: 1rem; line-height: 1.85; color: var(--white-dim); font-weight: 300;
  margin-bottom: 32px;
}
.pourquoi-cta-wrap { margin-top: 40px; }
.pourquoi-list { display: flex; flex-direction: column; gap: 2px; }
.pourquoi-item {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 0; border: 1px solid rgba(224,32,26,0.1);
  transition: border-color 0.3s;
}
.pourquoi-item:hover { border-color: var(--gold); }
.pourquoi-num {
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-pale);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600; color: var(--gold);
  min-height: 80px;
  border-right: 1px solid rgba(224,32,26,0.1);
}
.pourquoi-text { padding: 20px 24px; }
.pourquoi-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600; margin-bottom: 4px;
}
.pourquoi-text p { font-size: 0.85rem; line-height: 1.65; color: var(--white-dim); font-weight: 300; }

/* ─── CONTACT ────────────────────────────────────────────────────── */
#contact {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-top: 60px;
}
.contact-info p {
  font-size: 1rem; line-height: 1.8; color: var(--white-dim);
  font-weight: 300; margin-bottom: 36px;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-item-icon {
  width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px;
}
.contact-item-label {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 4px;
}
.contact-item-value { font-size: 0.95rem; color: var(--white); font-weight: 300; line-height: 1.5; }
.contact-item-value a { color: inherit; transition: color 0.3s; }
.contact-item-value a:hover { color: var(--gold); }
.form-row { margin-bottom: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  display: block; font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); font-weight: 500;
  margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 14px 18px;
  background: var(--white-faint); border: 1px solid var(--border);
  color: var(--white); font-family: 'Jost', sans-serif;
  font-size: 0.92rem; font-weight: 300;
  transition: border-color 0.3s, background 0.3s;
  appearance: none; outline: none;
  border-radius: 0;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(0,0,0,0.3); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold); background: rgba(224,32,26,0.05);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-select option { background: #fff; color: #0F0F0F; }
.form-submit {
  width: 100%; padding: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; font-family: 'Jost', sans-serif;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; border: none; cursor: none;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.form-submit::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}
.form-submit:hover::after { transform: translateX(0); }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(224,32,26,0.35); }
.form-success {
  display: none; padding: 20px; border: 1px solid var(--gold);
  background: var(--gold-pale); text-align: center;
  color: var(--gold); font-size: 0.9rem; letter-spacing: 0.05em;
}

/* ─── FOOTER ─────────────────────────────────────────────────────── */
footer {
  background: #0F0F0F;
  border-top: 1px solid rgba(224,32,26,0.2);
  padding: 60px 5% 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.88rem; line-height: 1.75; color: rgba(248,245,239,0.8);
  font-weight: 300; max-width: 340px;
}
.footer-brand .footer-reg {
  margin-top: 20px; font-size: 0.7rem; color: rgba(248,245,239,0.5);
  letter-spacing: 0.05em;
}
.footer-col h4 {
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem; color: rgba(248,245,239,0.85); font-weight: 300;
  transition: color 0.3s, padding-left 0.3s;
  word-break: break-word;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 6px; }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid rgba(224,32,26,0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy {
  font-size: 0.75rem; color: rgba(248,245,239,0.35); font-weight: 300;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1rem; color: rgba(248,245,239,0.75);
}

/* ─── DECORATIONS ─────────────────────────────────────────────────── */
.gold-rule {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0;
}

/* ─── STATS STRIP ────────────────────────────────────────────────── */
.stats-strip {
  padding: 48px 5%;
  background: #E0201A;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center; padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700; color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); font-weight: 600; margin-top: 6px;
}

/* ─── LIGHTBOX ───────────────────────────────────────────────────── */
#lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.93); z-index: 9000;
  align-items: center; justify-content: center;
  padding: 24px;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
#lightbox img.lb-slide-out-left  { opacity: 0; transform: translateX(-80px); }
#lightbox img.lb-slide-out-right { opacity: 0; transform: translateX(80px); }
#lightbox img.lb-slide-in-left   { opacity: 0; transform: translateX(80px); }
#lightbox img.lb-slide-in-right  { opacity: 0; transform: translateX(-80px); }
#lightbox-close {
  position: absolute; top: 20px; right: 28px;
  background: none; border: none; color: #fff;
  font-size: 2.4rem; cursor: pointer; opacity: 0.7;
  transition: opacity 0.2s; line-height: 1;
}
#lightbox-close:hover { opacity: 1; }
#lightbox-prev, #lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, opacity 0.2s; opacity: 0.75;
}
#lightbox-prev svg, #lightbox-next svg { width: 22px; height: 22px; }
#lightbox-prev { left: 24px; }
#lightbox-next { right: 24px; }
#lightbox-prev:hover, #lightbox-next:hover { background: rgba(224,32,26,0.7); opacity: 1; }
#lightbox-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.55); font-size: 0.78rem; letter-spacing: 0.2em;
}
.gallery-item { cursor: pointer; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-pillars { order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .valeurs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .pourquoi-layout { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  section { padding: 80px 5%; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
  .services-grid { grid-template-columns: 1fr; }
  .valeurs-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .stat-item { padding: 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; display: block; padding: 16px; }
}
