/* =============================================
   REALYZ THEME — STYLES PRINCIPAUX
   
   ⚡ GUIDE DE MODIFICATION RAPIDE :
   
   Pour changer la couleur rouge principale :
   → Cherchez "--rouge" et modifiez la valeur
   
   Pour changer les polices :
   → Modifiez les variables --serif, --sans, --raleway
   
   Pour changer la taille du titre hero :
   → Cherchez ".hero-main-title" et modifiez font-size
   
   Pour changer la vitesse du slideshow :
   → Allez dans Apparence > Personnaliser > Hero
============================================= */

:root {
  /* ===== COULEURS — MODIFIABLES ===== */
  --rouge:       #F12B38;
  --rouge-hover: #c41a15;
  --gris:        #8a8a8a;
  --gris-fonce:  #2c2c2c;
  --gris-moyen:  #555555;
  --gris-clair:  #f8f8f6;
  --gris-ligne:  #e8e8e4;
  --noir:        #0f0f0f;
  --blanc:       #ffffff;

  /* ===== POLICES — MODIFIABLES ===== */
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Montserrat', sans-serif;
  --raleway: 'Raleway', sans-serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--blanc);
  color: var(--gris-fonce);
  overflow-x: hidden;
  cursor: none;
}

/* CURSEUR PERSONNALISÉ */
.cursor {
  width: 8px; height: 8px;
  background: var(--rouge);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(232,32,26,.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: all .15s ease;
}
a, button { cursor: none; }

/* ANIMATIONS REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .30s; }
.delay-3 { transition-delay: .45s; }
.delay-4 { transition-delay: .60s; }

/* =============================================
   NAVIGATION
============================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 95px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  transition: background .5s, box-shadow .5s;
}
.site-header.at-hero { background: transparent; }
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 1px 0 var(--gris-ligne);
  backdrop-filter: blur(12px);
}

/* Logo gauche (caché sur hero) */
.nav-logo-left {
  opacity: 0; pointer-events: none;
  transition: opacity .5s ease;
  display: flex; flex-direction: column; align-items: flex-start;
  text-decoration: none;
}
.site-header.scrolled .nav-logo-left { opacity: 1; pointer-events: all; }
.nav-logo-left img { height: 85px; width: auto; }
.nav-logo-slogan {
  font-family: var(--sans); font-size: .38rem;
  letter-spacing: 1.5px; color: var(--gris);
  text-transform: uppercase; margin-top: 2px;
  white-space: nowrap; max-width: 150px;
}

/* Liens navigation centrés */
.main-navigation ul {
  display: flex; list-style: none;
  justify-content: center; gap: 35px; align-items: center;
}
.main-navigation ul li a {
  font-family: var(--sans); font-size: .62rem; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; color: rgba(255,255,255,.9);
  position: relative; transition: color .3s;
}
.site-header.scrolled .main-navigation ul li a { color: var(--gris-moyen); }
.main-navigation ul li a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--rouge);
  transition: width .3s;
}
.main-navigation ul li a:hover::after,
.main-navigation ul li a.active::after { width: 100%; }
.main-navigation ul li a:hover { color: var(--blanc); }
.site-header.scrolled .main-navigation ul li a:hover { color: var(--rouge); }

/* Réseaux sociaux droite */
.nav-socials {
  display: flex; gap: 13px; align-items: center; justify-content: flex-end;
}
.nav-socials a {
  color: rgba(255,255,255,.75); font-size: .82rem;
  transition: color .3s; text-decoration: none;
}
.site-header.scrolled .nav-socials a { color: var(--gris); }
.nav-socials a:hover { color: var(--rouge) !important; }

/* Burger mobile */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 5px;
}
.nav-burger span { display: block; width: 24px; height: 1px; background: var(--blanc); }
.site-header.scrolled .nav-burger span { background: var(--noir); }

/* Overlay mobile */
.mob-nav {
  position: fixed; inset: 0; background: var(--noir);
  z-index: 1500; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px; opacity: 0; pointer-events: none; transition: opacity .4s;
}
.mob-nav.open { opacity: 1; pointer-events: all; }
.mob-nav a {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 300;
  color: rgba(255,255,255,.6); text-decoration: none; transition: color .3s;
}
.mob-nav a:hover { color: var(--blanc); }
.mob-close {
  position: absolute; top: 28px; right: 28px;
  background: none; border: none; color: rgba(255,255,255,.4); font-size: 1.5rem;
}

/* =============================================
   HERO SLIDESHOW
============================================= */
.hero-section {
  height: 100vh; min-height: 680px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 2.5s ease-in-out;
  transform: scale(1.08);
}
.hero-slide.active { opacity: 1; animation: kenBurns 6s ease-in-out forwards; }
@keyframes kenBurns {
  0%   { transform: scale(1.08); }
  100% { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.38) 0%, rgba(0,0,0,.18) 35%, rgba(0,0,0,.55) 100%);
  z-index: 1;
}

/* Contenu hero */
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}

/* Titre principal */
.hero-main-title {
  text-align: center; width: 100%;	
  font-family: var(--raleway);
  font-size: clamp(14px, 1.8vw, 24px);
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blanc);
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp .9s ease .2s forwards;
  text-shadow: 0 2px 15px rgba(0,0,0,.3);
  line-height: 1.1;
}

/* Logo central transparent */
.hero-logo-center {
  opacity: 0; animation: fadeUp .9s ease .5s forwards;
  display: flex; align-items: center; justify-content: center;
}
.hero-logo-center img {
  width: clamp(160px, 20vw, 260px);
  height: auto; display: block;
  /* mix-blend-mode screen : rend le fond noir transparent */
  mix-blend-mode: normal;
  filter: drop-shadow(0 2px 20px rgba(0,0,0,.2));
}

/* Slogan bas — entre les pointes du logo */
.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 400; font-style: italic;
  letter-spacing: 1px; color: rgba(255,255,255,1);
  opacity: 0; animation: fadeUp .9s ease .8s forwards;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
  margin-top: 10px;
  position: relative; z-index: 3;
}

/* Dots slideshow */
.hero-dots {
  position: absolute; bottom: 15px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; gap: 10px;
  opacity: 0; animation: fadeUp .8s ease 1.1s forwards;
}
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.32); border: none;
  transition: all .4s; padding: 0;
}
.dot.active { background: var(--rouge); transform: scale(1.4); }

/* Compteur */
.hero-counter {
  position: absolute; bottom: 90px; right: 50px; z-index: 3;
  font-family: var(--serif); font-size: .85rem;
  color: rgba(255,255,255,.38);
  opacity: 0; animation: fadeUp .8s ease 1.2s forwards;
}
.hero-counter span { color: rgba(255,255,255,.75); font-size: 1.1rem; }

/* Indicateur scroll */
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  opacity: 0; animation: fadeUp .8s ease 1.3s forwards;
}
.hero-scroll p {
  font-family: var(--sans); font-size: .5rem;
  letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,.28);
}
.scroll-ln {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, rgba(255,255,255,.32), transparent);
  animation: scrl 2s ease infinite;
}
@keyframes scrl {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Barre statistiques */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(0,0,0,.42); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.07);
  display: grid; grid-template-columns: repeat(4, 1fr);
  opacity: 0; animation: fadeUp .8s ease 1s forwards;
}
.stat-item {
  padding: 18px 28px;
  border-right: 1px solid rgba(255,255,255,.07);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--serif); font-size: 1.85rem;
  font-weight: 300; color: var(--blanc);
  line-height: 1; margin-bottom: 4px;
}
.stat-number span { color: var(--rouge); }
.stat-label {
  font-family: var(--sans); font-size: .5rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

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

/* =============================================
   LABEL DE SECTION
============================================= */
.sec-label {
  font-family: var(--sans); font-size: .58rem;
  font-weight: 500; letter-spacing: 5px;
  text-transform: uppercase; color: var(--rouge);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.sec-label::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--rouge);
}

/* =============================================
   SECTION À PROPOS — DESIGN PREMIUM
============================================= */
.about-section {
  height: calc(100vh - 95px);
  margin-top: 95px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: var(--blanc);
  scroll-margin-top: 95px;
}
 
.about-wrapper {
  display: grid;
  grid-template-columns: 45% 55%;
  height: 100%;
}
 
/* COLONNE GAUCHE — Photo */
.about-photo-col {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.about-photo-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 8s ease, filter 1s ease;
  filter: grayscale(60%);
}
.about-photo-col:hover img {
  filter: grayscale(0%);
  transform: scale(1.03); 
}
 
.photo-accent {
  position: absolute; top: 0; right: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--rouge) 0%, transparent 100%);
}
 
.photo-name-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 80px 40px 40px;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
}
.overlay-name {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300; color: rgba(255,255,255,.95);
  line-height: .95; letter-spacing: -1px;
}
.overlay-name strong { font-weight: 600; display: block; }
.overlay-role {
  font-family: var(--sans); font-size: .52rem;
  letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-top: 10px;
}
 
/* COLONNE DROITE — Contenu */
.about-content-col {
  padding: 50px 65px 45px 65px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  overflow: hidden; height: 100%;
}
 
.about-bio p {
  font-family: var(--sans); font-size: .78rem;
  font-weight: 300; line-height: 2.1;
  color: var(--gris-moyen); margin-bottom: 12px;
}
.about-bio p:last-child { margin-bottom: 0; }
.about-bio strong { color: var(--rouge); font-weight: 500; }
.about-bio a { color: var(--rouge); text-decoration: none; border-bottom: 1px solid rgba(232,32,26,.2); }
 
.about-divider {
  width: 100%; height: 1px;
  background: var(--gris-ligne); margin: 28px 0;
}
 
.about-quote { position: relative; }
.quote-mark {
  font-family: var(--serif); font-size: 6rem; line-height: 1;
  color: var(--rouge); opacity: .08;
  position: absolute; top: -20px; left: -10px;
}
.about-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(14px, 1.4vw, 19px);
  font-weight: 300; font-style: italic;
  line-height: 1.65; color: var(--gris-fonce);
  margin-bottom: 16px; border-left: 2px solid var(--rouge); padding-left: 20px;
}
.quote-author {
  font-family: var(--sans); font-size: .52rem;
  font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--rouge);
  display: flex; align-items: center; gap: 10px;
}
.quote-author::before {
  content: ''; display: block;
  width: 20px; height: 1px; background: var(--rouge);
}
 
.txt-teal{color:#008080;} .txt-gold{color:#f5ac1b;}
.txt-violet{color:#9370DB;} .txt-blue{color:#33aadd;}
 
@media(max-width:1000px){
  .contact-section { grid-template-columns: 1fr; }
  .contact-left { min-height: 50vh; }
  .contact-right { padding: 45px 25px; }
  .form-row { grid-template-columns: 1fr; }
  .service-selector { grid-template-columns: repeat(2,1fr); }
}


/* =============================================
   SECTION SERVICES
============================================= */
.services-section {
  background: var(--noir); background-image: url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; padding: 50px 60px 80px 60px;
  position: relative; overflow: hidden;
}
.services-section::before {
  background: rgba(0,0,0,.82);
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
  background-size: 65px 65px;
}
.services-header {
  max-width: 1300px; margin: 0 auto 75px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
}
.services-title {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 300; line-height: 1.1; color: var(--blanc);
}
.services-title em { font-style: italic; color: rgba(255,255,255,.28); }
.services-intro {
  font-family: var(--sans); font-size: .8rem;
  font-weight: 300; line-height: 2.1; color: rgba(255,255,255,.38);
}
.services-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,.04);
}
.service-card {
  background: var(--noir); padding: 48px 30px;
  position: relative; transition: background .4s; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--rouge);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: rgba(255,255,255,.018); }
.service-number {
  font-family: var(--serif); font-size: 3.2rem;
  font-weight: 300; color: rgba(255,255,255,.035);
  line-height: 1; margin-bottom: 26px; transition: color .4s;
}
.service-card:hover .service-number { color: rgba(232,32,26,.12); }
.service-line {
  width: 28px; height: 1px; background: var(--rouge);
  margin-bottom: 20px; transition: width .4s;
}
.service-card:hover .service-line { width: 48px; }
.service-name {
  font-family: var(--sans); font-size: .62rem;
  font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--blanc); margin-bottom: 15px;
}
.service-desc {
  font-family: var(--sans); font-size: .78rem;
  font-weight: 300; line-height: 1.95; color: rgba(255,255,255,.38);
}

/* =============================================
   SECTION PROJETS — DESIGN PREMIUM
============================================= */
.projects-section { background: var(--blanc); scroll-margin-top: 95px; }
 
.projects-header {
  padding: 60px 60px 45px;
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 25px;
  border-bottom: 1px solid var(--gris-ligne);
}
.projects-title {
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 300; line-height: .95;
  letter-spacing: -2px; color: var(--noir);
}
.projects-title em { font-style: italic; color: var(--gris); }
.header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 20px; }
.projects-count {
  font-family: var(--serif); font-size: 4.5rem;
  font-weight: 300; color: #efefef; line-height: 1;
}
 
/* Filtres 5 boutons */
.projects-filters { display: flex; border: 1px solid var(--gris-ligne); }
.filter-btn {
  font-family: var(--sans); font-size: .48rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 11px 16px; border: none; background: none;
  color: var(--gris); cursor: pointer;
  border-right: 1px solid var(--gris-ligne);
  transition: all .3s; white-space: nowrap;
}
.filter-btn:last-child { border-right: none; }
.filter-btn.active, .filter-btn:hover { background: var(--rouge); color: var(--blanc); }
 
/* Grille projets */
.projects-grid { display: grid; grid-template-columns: repeat(12, 1fr); }
 
.project-card {
  position: relative; overflow: hidden;
  background: #1a1a1a; cursor: pointer;
  border: 1px solid rgba(0,0,0,.06);
}
.project-card:nth-child(1) { grid-column: span 7; height: 520px; }
.project-card:nth-child(2) { grid-column: span 5; height: 520px; }
.project-card:nth-child(3) { grid-column: span 4; height: 390px; }
.project-card:nth-child(4) { grid-column: span 4; height: 390px; }
.project-card:nth-child(5) { grid-column: span 4; height: 390px; }
.project-card:nth-child(6) { grid-column: span 5; height: 450px; }
.project-card:nth-child(7) { grid-column: span 7; height: 450px; }
.project-card:nth-child(8) { grid-column: span 6; height: 410px; }
.project-card:nth-child(9) { grid-column: span 6; height: 410px; }
.project-card.hidden { display: none; }
 
.project-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.2s cubic-bezier(.16,1,.3,1), filter .8s ease;
  filter: brightness(.68) grayscale(15%);
}
.project-card:hover .project-img { transform: scale(1.07); filter: brightness(.45) grayscale(0%); }
 
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.08) 55%, transparent 100%);
  transition: background .5s;
}
.project-card:hover .project-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.4) 65%, rgba(0,0,0,.08) 100%);
}
 
.project-number {
  position: absolute; top: 22px; left: 28px;
  font-family: var(--serif); font-size: 4.5rem; font-weight: 300;
  color: rgba(255,255,255,.05); line-height: 1;
  transition: color .4s, transform .5s;
}
.project-card:hover .project-number { color: rgba(241,43,56,.1); transform: translateY(-4px); }
 
.project-badge {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--sans); font-size: .44rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 5px 11px; border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.65); backdrop-filter: blur(8px);
  background: rgba(0,0,0,.25);
}
.project-badge.realise { border-color: rgba(241,43,56,.5); color: var(--rouge); }
.project-badge.vente { background: var(--rouge); border-color: var(--rouge); color: var(--blanc); }
.project-badge.cours { border-color: rgba(245,172,27,.5); color: #f5ac1b; }
 
.project-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 28px 26px;
  transform: translateY(6px);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.project-card:hover .project-content { transform: translateY(0); }
 
.project-cat {
  font-family: var(--sans); font-size: .46rem; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--rouge); margin-bottom: 7px;
  display: flex; align-items: center; gap: 8px;
}
.project-cat::before { content: ''; display: block; width: 14px; height: 1px; background: var(--rouge); }
 
.project-name {
  font-family: var(--serif); font-size: clamp(18px, 2vw, 28px);
  font-weight: 300; color: var(--blanc); line-height: 1.1; margin-bottom: 5px;
}
.project-card:nth-child(1) .project-name,
.project-card:nth-child(7) .project-name { font-size: clamp(24px, 2.8vw, 40px); }
 
.project-location {
  font-family: var(--sans); font-size: .5rem; font-weight: 300;
  letter-spacing: 2px; color: rgba(255,255,255,.42);
  margin-bottom: 12px; display: flex; align-items: center; gap: 5px;
}
.project-location i { color: var(--rouge); font-size: .5rem; }
 
.project-details {
  display: flex; gap: 18px; opacity: 0; transform: translateY(10px);
  transition: all .4s ease .1s;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 12px;
}
.project-card:hover .project-details { opacity: 1; transform: translateY(0); }
.detail-val { font-family: var(--serif); font-size: 1rem; font-weight: 300; color: var(--blanc); line-height: 1; }
.detail-key { font-family: var(--sans); font-size: .4rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.32); margin-top: 2px; }
 
.project-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--rouge);
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s cubic-bezier(.16,1,.3,1); z-index: 2;
}
.project-card:hover::before { transform: scaleX(1); }
 
/* CTA */
.projects-cta {
  padding: 55px 60px; text-align: center;
  border-top: 1px solid var(--gris-ligne); background: var(--blanc);
}
.btn-voir-plus {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: .58rem; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  padding: 18px 48px; border: 1px solid var(--noir);
  background: none; color: var(--noir); text-decoration: none;
  transition: all .4s;
}
.btn-voir-plus:hover { background: var(--rouge); border-color: var(--rouge); color: var(--blanc); }
 
/* =============================================
   LIGHTBOX
============================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .4s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
 
.lb-inner {
  display: grid; grid-template-columns: 1fr 380px;
  width: 92vw; max-width: 1300px; height: 85vh;
  background: #0f0f0f; position: relative;
}
.lb-photo { position: relative; overflow: hidden; }
.lb-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lb-photo-nav {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: space-between; padding: 0 20px;
}
.lb-nav-btn {
  width: 50px; height: 50px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.5); color: var(--blanc);
  font-size: .9rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s; backdrop-filter: blur(8px);
}
.lb-nav-btn:hover { background: var(--rouge); border-color: var(--rouge); }
.lb-photo-count {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  font-family: var(--sans); font-size: .5rem; letter-spacing: 3px;
  color: rgba(255,255,255,.45); text-transform: uppercase;
}
.lb-info {
  padding: 50px 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  border-left: 1px solid rgba(255,255,255,.06); overflow-y: auto;
}
.lb-badge {
  font-family: var(--sans); font-size: .48rem; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase; color: var(--rouge);
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.lb-badge::before { content: ''; display: block; width: 20px; height: 1px; background: var(--rouge); }
.lb-name {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 42px);
  font-weight: 300; color: var(--blanc); line-height: 1;
  letter-spacing: -1px; margin-bottom: 8px;
}
.lb-location {
  font-family: var(--sans); font-size: .52rem; font-weight: 300;
  letter-spacing: 2px; color: rgba(255,255,255,.38);
  margin-bottom: 35px; display: flex; align-items: center; gap: 6px;
}
.lb-location i { color: var(--rouge); }
.lb-divider { width: 35px; height: 1px; background: var(--rouge); margin-bottom: 30px; }
.lb-desc {
  font-family: var(--sans); font-size: .75rem; font-weight: 300;
  line-height: 2; color: rgba(255,255,255,.45); margin-bottom: 35px;
}
.lb-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 35px; }
.lb-spec { border-top: 1px solid rgba(255,255,255,.07); padding-top: 14px; }
.lb-spec-val {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 300;
  color: var(--blanc); line-height: 1; margin-bottom: 5px;
}
.lb-spec-key {
  font-family: var(--sans); font-size: .45rem; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.3);
}
.lb-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: .55rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 14px 28px; background: var(--rouge); color: var(--blanc);
  text-decoration: none; cursor: pointer; transition: background .3s; border: none;
}
.lb-cta:hover { background: var(--rouge-hover); }
.lb-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; background: rgba(255,255,255,.08);
  border: none; color: rgba(255,255,255,.5); font-size: 1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .3s; z-index: 2;
}
.lb-close:hover { background: var(--rouge); color: var(--blanc); }
.lb-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.lb-thumb {
  width: 60px; height: 45px; object-fit: cover;
  opacity: .4; cursor: pointer; transition: opacity .3s;
  border: 1px solid transparent;
}
.lb-thumb.active { opacity: 1; border-color: var(--rouge); }
.lb-thumb:hover { opacity: .8; }
 
@media(max-width:1100px){
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card:nth-child(n) { grid-column: span 1; height: 320px; }
  .projects-header { padding: 40px 22px 30px; }
  .projects-cta { padding: 40px 22px; }
}
@media(max-width:640px){
  .projects-grid { grid-template-columns: 1fr; }
  .project-card:nth-child(n) { grid-column: span 1; height: 280px; }
  .lb-inner { grid-template-columns: 1fr; }
  .lb-info { display: none; }
}

/* =============================================
   SECTION CONTACT — DESIGN PREMIUM
============================================= */
.contact-section {
  height: calc(100vh - 95px);
  max-height: calc(100vh - 95px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  scroll-margin-top: 95px;
}
 
/* COLONNE GAUCHE */
.contact-left {
  position: relative; overflow: hidden;
  height: calc(100vh - 130px);
  max-height: calc(100vh - 130px);
  background: var(--noir);
}
.contact-bg {
  position: absolute; inset: 0;
  background-image: url('<?php echo get_template_directory_uri(); ?>/images/abidjan-contact.jpg');
  background-size: cover; background-position: center;
  filter: brightness(.25) grayscale(20%);
  transition: filter 8s ease;
}
.contact-section:hover .contact-bg { filter: brightness(.3) grayscale(0%); }
.contact-left-accent {
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--rouge), transparent);
}
.contact-left-content {
  position: relative; z-index: 2;
  padding: 45px 50px;
  display: flex; flex-direction: column;
  justify-content: space-between; height: 100%;
}
.contact-title {
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 300; line-height: .92;
  letter-spacing: -2px; color: var(--blanc); margin-bottom: 15px;
}
.contact-title em { font-style: italic; color: rgba(255,255,255,.4); display: block; }
.contact-tagline {
  font-family: var(--sans); font-size: .78rem;
  font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,.42); max-width: 380px; margin-bottom: 20px;
}
.contact-infos { flex: 1; justify-content: space-around; display: flex; flex-direction: column; gap: 0; margin-bottom: 0; }
.contact-info-item {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.07);
  transition: border-color .3s;
}
.contact-info-item:first-child { border-top: 1px solid rgba(255,255,255,.07); }
.contact-info-item:hover { border-bottom-color: rgba(241,43,56,.3); }
.info-icon {
  width: 36px; height: 36px; min-width: 36px;
  border: 1px solid rgba(241,43,56,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--rouge); font-size: .75rem; transition: all .3s;
}
.contact-info-item:hover .info-icon {
  background: var(--rouge); border-color: var(--rouge); color: var(--blanc);
}
.info-label {
  font-family: var(--sans); font-size: .48rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 5px;
}
.info-value {
  font-family: var(--sans); font-size: .76rem;
  font-weight: 300; line-height: 1.7; color: rgba(255,255,255,.72);
}
.info-value a { color: rgba(255,255,255,.72); text-decoration: none; transition: color .3s; }
.info-value a:hover { color: var(--rouge); }
.contact-socials { display: flex; gap: 10px; margin-top: 40px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); font-size: .75rem;
  text-decoration: none; transition: all .3s;
}
.social-link:hover { background: var(--rouge); border-color: var(--rouge); color: var(--blanc); }
 
/* COLONNE DROITE */
.contact-right {
  background: var(--blanc); padding: 20px 50px 15px 50px;
  display: flex; flex-direction: column; justify-content: space-between;
  height: calc(100vh - 155px);
  max-height: calc(100vh - 155px);
  overflow: hidden;
}
.form-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300; color: var(--noir);
  line-height: 1.1; margin-bottom: 5px; letter-spacing: -1px;
}
.form-title em { font-style: italic; color: var(--gris); }
.form-subtitle {
  font-family: var(--sans); font-size: .63rem;
  font-weight: 300; color: var(--gris);
  margin-bottom: 20px; line-height: 1.8;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 14px; position: relative; }
.form-group label {
  display: block; font-family: var(--sans); font-size: .5rem;
  font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gris); margin-bottom: 10px; transition: color .3s;
}
.form-group:focus-within label { color: var(--rouge); }
.form-group input,
.form-group textarea {
  width: 100%; padding: 12px 0;
  border: none; border-bottom: 1px solid var(--gris-ligne);
  font-family: var(--sans); font-size: .8rem; font-weight: 300;
  color: var(--noir); background: transparent; outline: none;
  transition: border-color .3s; -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { border-bottom-color: var(--rouge); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(0,0,0,.18); }
.form-group textarea { height: 85px; resize: none; }
.form-group::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--rouge);
  transition: width .4s cubic-bezier(.16,1,.3,1);
}
.form-group:focus-within::after { width: 100%; }
 
/* Sélecteur service */
.service-label {
  font-family: var(--sans); font-size: .5rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gris); margin-bottom: 10px; display: block;
}
.service-selector {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; margin-bottom: 14px;
}
.service-option {
  padding: 10px 6px; border: 1px solid var(--gris-ligne);
  text-align: center; cursor: pointer;
  font-family: var(--sans); font-size: .46rem;
  font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gris); transition: all .3s; user-select: none;
}
.service-option:hover { border-color: var(--rouge); color: var(--rouge); }
.service-option.selected { background: var(--rouge); border-color: var(--rouge); color: var(--blanc); }
 
/* Bouton */
.btn-submit {
  display: flex; align-items: center; justify-content: space-between;
  width: 50%; padding: 18px 28px;
  background: var(--noir); color: var(--blanc); border: none;
  cursor: pointer; font-family: var(--sans); font-size: .56rem;
  font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  transition: background .4s; margin-top: 15px;
  position: relative; overflow: hidden;
}
.btn-submit::before {
  content: ''; position: absolute; inset: 0;
  background: var(--rouge); transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.btn-submit:hover::before { transform: translateX(0); }
.btn-submit span, .btn-submit i { position: relative; z-index: 1; }
.btn-submit i { transition: transform .3s; }
.btn-submit:hover i { transform: translateX(6px); }
 
.form-message { margin-top: 12px; font-size: .72rem; display: none; text-align: center; }
.form-message.success { color: #2ecc71; display: block; }
.form-message.error { color: var(--rouge); display: block; }
 
@media(max-width:1000px){
  .contact-section { grid-template-columns: 1fr; }
  .contact-left { min-height: 50vh; }
  .contact-right { padding: 45px 25px; }
  .form-row { grid-template-columns: 1fr; }
  .service-selector { grid-template-columns: repeat(2,1fr); }
}

/* Bouton scroll top */
#scroll-top {
  position: fixed; bottom: 63px; right: 0px;
  width: 44px; height: 44px; background: var(--rouge);
  border: none; color: var(--blanc); font-size: .9rem;
  z-index: 9999; opacity: 0;
  transition: opacity .3s, transform .3s;
  transform: translateY(16px);
  display: flex; align-items: center; justify-content: center;
}
#scroll-top.visible { opacity: 1; transform: translateY(0); }
#scroll-top:hover { background: var(--rouge-hover); }

/* =============================================
   FOOTER ÉPURÉ
============================================= */
.site-footer {
  background: var(--noir);
  padding: 10px 40px;
  margin-top: -36px;
  border-top: 1px solid rgba(255,255,255,.06);
  position: relative;
  z-index: 1;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-copy {
    color: rgba(255,255,255,0.4);
    font-size: 0.58rem;
    letter-spacing: 2px;
    text-transform: none;
    margin: 0;
}

.footer-copy span {
    color: var(--rouge);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal a {
    color: rgba(255,255,255,0.4);
    font-size: 0.58rem;
    letter-spacing: 2px;
    text-transform: none;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--blanc);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.5); /* plus visible */
    font-size: 0.8rem;
    margin: 0 4px;
}
```

**Résultat obtenu :**
```
© 2021-2026 Realyz. Tous droits réservés.        Confidentialité · Mentions légales

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1100px) {
  .site-header { padding: 0 20px; grid-template-columns: 140px 1fr auto; }
  .main-navigation ul { gap: 20px; }
  .about-section, .services-section, .projects-section,
  .stats-section, .contact-section { padding-left: 22px; padding-right: 22px; }
  .about-grid, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .services-header { grid-template-columns: 1fr; gap: 22px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .projects-header { flex-direction: column; gap: 20px; align-items: flex-start; }
}
@media (max-width: 800px) {
  .main-navigation, .nav-socials { display: none; }
  .nav-burger { display: flex; }
  .site-header { grid-template-columns: auto 1fr auto; }
}
@media (max-width: 640px) {
  .services-grid, .projects-grid { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero-logo-center img { width: 180px; }
  .hero-main-title { font-size: 1.4rem; letter-spacing: 2px; }
  .hero-counter { display: none; }
  .site-footer { padding: 14px 20px; }
}
.about-section,
.services-section,
.projects-section,
.stats-section,
.contact-section {
  scroll-margin-top: 95px;
}
.hero-section {
  position: relative;
  z-index: 0;
}
.nav-whatsapp {
  color: #25D366 !important;
  font-size: .202rem;
  text-decoration: none;
  transition: color .3s;
}
.nav-whatsapp:hover {
  color: #128C7E !important;
}
/* =============================================
   CURSEUR — DÉSACTIVÉ SUR MOBILE/TABLETTE
============================================= */
@media (hover: none) and (pointer: coarse) {
  .cursor, .cursor-ring { display: none !important; }
  body { cursor: auto !important; }
}
/* =============================================
   BANNIÈRE COOKIES PERSONNALISÉE
============================================= */
#cookie-notice {
  border-top: 2px solid #F12B38 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 0.75rem !important;
  letter-spacing: 1px !important;
}
#cookie-notice .cn-button {
  border-radius: 0 !important;
  letter-spacing: 2px !important;
  font-size: 0.6rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  padding: 10px 20px !important;
}
#cookie-notice #cn-accept-cookie {
  background: #F12B38 !important;
  color: #fff !important;
}
#cookie-notice #cn-refuse-cookie {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.3) !important;
  color: rgba(255,255,255,.6) !important;
}

/* =============================================
   RESPONSIVE MOBILE — BLOC UNIQUE FINAL
============================================= */
@media (max-width: 768px) {

  /* --- HERO --- */
  .hero-stats { display: none !important; }
  .hero-scroll { bottom: 15px !important; }
  .hero-content { justify-content: center !important; padding-top: 0 !important; }
  .hero-logo { width: 140px !important; height: auto !important; }

  /* --- À PROPOS --- */
  .about-section { height: auto !important; overflow: visible !important; margin-top: 95px !important; }
  .about-wrapper { grid-template-columns: 1fr !important; height: auto !important; }
  .about-photo-col { height: 60vh !important; width: 100% !important; }
  .about-content-col { padding: 40px 24px !important; height: auto !important; overflow: visible !important; }
  .about-bio p { letter-spacing: 0 !important; word-spacing: 0 !important; white-space: normal !important; width: 100% !important; font-size: .82rem !important; line-height: 1.9 !important; }

  /* --- SERVICES --- */
  .services-section { padding: 40px 24px 60px !important; background-attachment: scroll !important; }
  .services-header { grid-template-columns: 1fr !important; gap: 20px !important; margin-bottom: 40px !important; }
  .services-intro { letter-spacing: 0 !important; word-spacing: 0 !important; white-space: normal !important; width: 100% !important; font-size: .78rem !important; line-height: 1.9 !important; }
  .services-grid { grid-template-columns: 1fr !important; }

  /* --- PROJETS --- */
  .projects-header { padding: 40px 24px 30px !important; flex-direction: column !important; align-items: flex-start !important; }
  .projects-filters { display: flex !important; overflow-x: scroll !important; -webkit-overflow-scrolling: touch !important; border: none !important; gap: 6px !important; padding: 0 24px 10px !important; scrollbar-width: none !important; -ms-overflow-style: none !important; }
  .projects-filters::-webkit-scrollbar { display: none !important; }
  .filter-btn { flex-shrink: 0 !important; border: 1px solid var(--gris-ligne) !important; padding: 10px 14px !important; }

  /* --- CONTACT --- */
  .contact-section { grid-template-columns: 1fr !important; height: auto !important; max-height: none !important; overflow: visible !important; }
  .contact-left { height: 55vh !important; max-height: none !important; }
  .contact-right { height: auto !important; max-height: none !important; overflow: visible !important; padding: 40px 24px 60px !important; }
  .service-selector { grid-template-columns: repeat(2, 1fr) !important; }
  .btn-submit { width: 100% !important; }

  /* --- FOOTER --- */
  .footer-inner { flex-direction: column !important; gap: 8px !important; text-align: center !important; }
  .footer-legal a { color: rgba(255,255,255,0.5) !important; font-size: 0.58rem !important; text-decoration: none !important; }
}