/* =============================================
   BCLIS — Business Center LPBPAA International Services
   Style Global — Design 2026 — Niveau Immersif
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Syne:wght@400;600;700;800&family=DM+Mono:wght@300;400&display=swap');

/* ─── VARIABLES ─────────────────────────────── */
:root {
  --rouge:    #C41E3A;
  --rouge-light: #E8334A;
  --or:       #D4A017;
  --or-light: #F0C040;
  --vert:     #1A6B3C;
  --vert-light: #2D9155;
  --bleu:     #0A2A5E;
  --bleu-light:#1A4A9E;
  --noir:     #050A14;
  --noir-soft:#0D1620;
  --blanc:    #F5F0E8;
  --blanc-off:#EDE8DE;
  --gris:     #8A8070;
  --gris-light:#C5BEB0;

  --font-display: 'Cormorant Garamond', serif;
  --font-ui:      'Syne', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.76, 0, 0.24, 1);
  --ease-elastic:  cubic-bezier(0.34, 1.56, 0.64, 1);

  --header-h: 80px;
  --transition: 0.6s var(--ease-out-expo);
}

/* ─── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-ui);
  background: var(--noir);
  color: var(--blanc);
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: none; border: none; background: none; }

/* ─── CUSTOM CURSOR ─────────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  background: var(--or);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease-elastic), height 0.3s var(--ease-elastic), background 0.3s;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(212, 160, 23, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-out-expo), width 0.4s, height 0.4s, opacity 0.3s;
}

body:hover .cursor-follower { opacity: 1; }

/* ─── LOADER ─────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--noir);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--blanc);
  overflow: hidden;
}

.loader-logo span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.8s var(--ease-out-expo);
}

.loader-logo span.visible {
  transform: translateY(0);
}

.loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--or);
  animation: loadBar 1.5s var(--ease-out-expo) forwards 0.3s;
}

@keyframes loadBar {
  to { left: 0; }
}

.loader-tagline {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gris);
  opacity: 0;
  transition: opacity 0.6s 0.5s;
}

.loader-tagline.visible { opacity: 1; }

/* ─── HEADER ─────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  transition: transform 0.5s var(--ease-out-expo), background 0.5s;
}

#header.scrolled {
  background: rgba(5, 10, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}

#header.hidden {
  transform: translateY(-100%);
}

.header-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--blanc);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 600;
  position: relative;
}

.header-logo .logo-icon {
  width: 42px; height: 42px;
  border: 2px solid var(--or);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-family: var(--font-mono);
  font-weight: 400;
  color: var(--or);
  letter-spacing: 0;
  flex-shrink: 0;
  /* REMPLACER PAR LOGO CLIENT */
  background: transparent;
  transition: background 0.3s, color 0.3s;
}

.header-logo:hover .logo-icon {
  background: var(--or);
  color: var(--noir);
}

.header-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--blanc);
}

.logo-text small {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--or);
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ─── HAMBURGER ────────────────────────────── */
.hamburger {
  width: 44px; height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 600;
  position: relative;
  cursor: none;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--blanc);
  transition: all 0.4s var(--ease-out-expo);
}

.hamburger span:nth-child(1) { width: 30px; }
.hamburger span:nth-child(2) { width: 20px; margin-left: 10px; }
.hamburger span:nth-child(3) { width: 25px; margin-left: 5px; }

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); width: 30px; }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); width: 30px; margin-left: 0; }

/* ─── FULLSCREEN NAV ─────────────────────────── */
#nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--bleu);
  z-index: 450;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: circle(0% at calc(100% - 60px) 40px);
  transition: clip-path 0.8s var(--ease-in-out);
  pointer-events: none;
}

#nav-overlay.open {
  clip-path: circle(150% at calc(100% - 60px) 40px);
  pointer-events: all;
}

.nav-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.nav-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0 clamp(2rem, 8vw, 8rem);
  width: 100%;
}

.nav-item {
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.2em;
  min-width: 30px;
  margin-top: 0.5rem;
}

.nav-link {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--blanc);
  display: block;
  transform: translateY(110%);
  transition: transform 0.7s var(--ease-out-expo), color 0.3s;
  line-height: 1;
  letter-spacing: -0.02em;
}

#nav-overlay.open .nav-link {
  transform: translateY(0);
}

#nav-overlay.open .nav-item:nth-child(1) .nav-link { transition-delay: 0.1s; }
#nav-overlay.open .nav-item:nth-child(2) .nav-link { transition-delay: 0.17s; }
#nav-overlay.open .nav-item:nth-child(3) .nav-link { transition-delay: 0.24s; }
#nav-overlay.open .nav-item:nth-child(4) .nav-link { transition-delay: 0.31s; }
#nav-overlay.open .nav-item:nth-child(5) .nav-link { transition-delay: 0.38s; }
#nav-overlay.open .nav-item:nth-child(6) .nav-link { transition-delay: 0.45s; }

.nav-link:hover { color: var(--or); }

.nav-footer {
  position: absolute;
  bottom: 3rem;
  left: clamp(2rem, 8vw, 8rem);
  right: clamp(2rem, 8vw, 8rem);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s 0.5s, transform 0.5s var(--ease-out-expo) 0.5s;
}

#nav-overlay.open .nav-footer { opacity: 1; transform: translateY(0); }

.nav-contact-info {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.nav-social-links { display: flex; gap: 1.5rem; }
.nav-social-links a {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.nav-social-links a:hover { color: var(--or); }

/* ─── PROGRESS BAR ───────────────────────────── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--rouge), var(--or), var(--vert));
  z-index: 600;
  transition: width 0.1s linear;
}

/* ─── HERO ───────────────────────────────────── */
#hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(10, 42, 94, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(196, 30, 58, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 90% 70%, rgba(26, 107, 60, 0.1) 0%, transparent 50%),
    var(--noir);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-image {
  position: absolute;
  right: 0; top: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.25;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.8), transparent);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.8), transparent);
  /* REMPLACER PAR PHOTO CLIENT */
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem clamp(1.5rem, 6vw, 7rem);
  min-height: 100dvh;
  max-width: 900px;
}

.hero-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--or);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  overflow: hidden;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line span {
  display: block;
  transform: translateY(110%);
}

.hero-accent {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--or);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: var(--gris-light);
  max-width: 500px;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.btn-primary {
  padding: 1rem 2.5rem;
  background: var(--or);
  color: var(--noir);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rouge);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}

.btn-primary:hover { color: var(--blanc); }
.btn-primary:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  padding: 1rem 2.5rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--blanc);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out-expo);
}

.btn-outline:hover {
  border-color: var(--or);
  color: var(--or);
}

.hero-stats {
  position: absolute;
  bottom: 4rem;
  right: clamp(1.5rem, 5vw, 6rem);
  display: flex;
  gap: 3rem;
  z-index: 2;
  opacity: 0;
}

.stat-item { text-align: right; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--blanc);
}
.stat-num .unit { color: var(--or); }
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris);
  margin-top: 0.3rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: clamp(1.5rem, 6vw, 7rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--or), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.3); transform-origin: top; }
}

.scroll-text {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gris);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ─── SECTIONS GENERALES ─────────────────────── */
section { position: relative; overflow: hidden; }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 25px;
  height: 1px;
  background: var(--or);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--blanc);
}

.section-title em { font-style: italic; color: transparent; -webkit-text-stroke: 1px var(--or); }

/* ─── ABOUT SECTION ──────────────────────────── */
#about-home {
  padding: 8rem clamp(1.5rem, 6vw, 7rem);
  background: var(--noir-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 550px;
}

.about-img-main {
  width: 75%;
  height: 80%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0; left: 0;
  /* REMPLACER PAR PHOTO CLIENT */
}

.about-img-accent {
  width: 55%;
  height: 55%;
  object-fit: cover;
  position: absolute;
  bottom: 0; right: 0;
  border: 3px solid var(--noir-soft);
  /* REMPLACER PAR PHOTO CLIENT */
}

.about-badge {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  background: var(--rouge);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.2rem;
  z-index: 2;
}

.badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--blanc);
}

.badge-text {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.about-text .section-label { margin-bottom: 1rem; }
.about-text .section-title { margin-bottom: 1.5rem; }

.about-desc {
  color: var(--gris-light);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pillar {
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.3s, background 0.3s;
}

.pillar:hover {
  border-color: var(--or);
  background: rgba(212,160,23,0.05);
}

.pillar-icon {
  font-size: 1.3rem;
  color: var(--or);
  margin-bottom: 0.7rem;
}

.pillar-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blanc);
  margin-bottom: 0.4rem;
}

.pillar-desc {
  font-size: 0.8rem;
  color: var(--gris);
  line-height: 1.6;
}

/* ─── SERVICES SECTION ───────────────────────── */
#services-home {
  padding: 8rem clamp(1.5rem, 6vw, 7rem);
  background: var(--noir);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  padding: 3rem 2.5rem;
  background: var(--noir-soft);
  border-bottom: 2px solid transparent;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  transition: width 0.5s var(--ease-out-expo);
}

.service-card:nth-child(3n+1)::before { background: var(--rouge); }
.service-card:nth-child(3n+2)::before { background: var(--or); }
.service-card:nth-child(3n)::before   { background: var(--vert); }

.service-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.03);
}

.service-card:hover::before { width: 100%; }

.service-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gris);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.service-card:nth-child(3n+1) .service-icon { color: var(--rouge); }
.service-card:nth-child(3n+2) .service-icon { color: var(--or); }
.service-card:nth-child(3n) .service-icon   { color: var(--vert-light); }

.service-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blanc);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--gris);
  line-height: 1.7;
}

/* ─── PORTFOLIO SECTION ──────────────────────── */
#portfolio-home {
  padding: 8rem clamp(1.5rem, 6vw, 7rem);
  background: var(--bleu);
  position: relative;
}

.portfolio-header {
  margin-bottom: 4rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: none;
}

.portfolio-item:first-child {
  grid-column: span 2;
  grid-row: span 1;
}

.portfolio-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
  /* REMPLACER PAR PHOTO CLIENT */
  background: rgba(255,255,255,0.05);
}

.portfolio-item:first-child .portfolio-img { aspect-ratio: 16/7; }

.portfolio-item:hover .portfolio-img { transform: scale(1.05); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,10,20,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-cat {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.5rem;
}

.portfolio-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blanc);
}

/* ─── CTA BAND ───────────────────────────────── */
#cta-band {
  padding: 6rem clamp(1.5rem, 6vw, 7rem);
  background: var(--rouge);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

#cta-band::before {
  content: 'BCLIS';
  position: absolute;
  right: -3rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 15rem;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  pointer-events: none;
  white-space: nowrap;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  color: var(--blanc);
  line-height: 1.1;
}

.btn-white {
  padding: 1.2rem 3rem;
  background: var(--blanc);
  color: var(--rouge);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: all 0.4s;
  white-space: nowrap;
}

.btn-white:hover {
  background: var(--noir);
  color: var(--or);
}

/* ─── FOOTER ─────────────────────────────────── */
#footer {
  background: var(--noir);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 5rem clamp(1.5rem, 6vw, 7rem) 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--gris);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gris);
  font-size: 0.85rem;
  transition: all 0.3s;
}

.social-btn:hover {
  border-color: var(--or);
  color: var(--or);
  background: rgba(212,160,23,0.08);
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blanc);
  margin-bottom: 1.5rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--gris);
  transition: color 0.3s;
}

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

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact-item i {
  color: var(--or);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.8rem;
  color: var(--gris);
  line-height: 1.5;
}

.footer-hours {
  margin-top: 0.5rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.footer-hours p {
  font-size: 0.78rem;
  color: var(--gris);
  line-height: 1.6;
}

.footer-lang {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.lang-badge {
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--gris);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gris);
  letter-spacing: 0.1em;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gris);
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

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

.kinerty-credit {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.kinerty-credit a {
  color: var(--or);
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: opacity 0.25s;
  text-decoration: none;
  border-bottom: 1px solid rgba(212,160,23,0.35);
  padding-bottom: 1px;
}
.kinerty-credit a:hover { opacity: 0.75; }

/* ─── WHATSAPP FLOTTANT ──────────────────────── */
#whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}

.wa-tooltip {
  background: var(--blanc);
  color: var(--noir);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s;
  pointer-events: none;
}

#whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wa-btn {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease-elastic), box-shadow 0.3s;
  cursor: none;
}

.wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

/* ─── BACK TO TOP ────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 800;
  width: 44px; height: 44px;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
  font-size: 0.8rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-out-expo);
  cursor: none;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  border-color: var(--or);
  color: var(--or);
  background: rgba(212,160,23,0.08);
}

/* ─── REVEAL ANIMATIONS ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.revealed {
  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; }

/* ─── PAGE HERO (sous-pages) ────────────────── */
.page-hero {
  min-height: 45dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 3rem) clamp(1.5rem, 6vw, 7rem) 4rem;
  position: relative;
  overflow: hidden;
  background: var(--noir-soft);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(10,42,94,0.5) 0%, transparent 60%),
    var(--noir-soft);
}

.page-hero-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.page-hero-label::before {
  content: '';
  width: 25px; height: 1px;
  background: var(--or);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--blanc);
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-hero h1 em {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--or);
}

.breadcrumb {
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gris);
  letter-spacing: 0.1em;
}

.breadcrumb a { color: var(--or); transition: opacity 0.3s; }
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb i { font-size: 0.5rem; }

/* ─── CONTACT FORM ───────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  padding: 6rem clamp(1.5rem, 6vw, 7rem);
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris);
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}

.form-group:focus-within label { color: var(--or); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--blanc);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--or);
  background: rgba(212,160,23,0.04);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.btn-submit {
  width: 100%;
  padding: 1.2rem;
  background: var(--or);
  color: var(--noir);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out-expo);
  cursor: none;
}

.btn-submit:hover {
  background: var(--rouge);
  color: var(--blanc);
}

.contact-info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-info-icon {
  width: 46px; height: 46px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--or);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blanc);
  margin-bottom: 0.4rem;
}

.contact-info-text p, .contact-info-text a {
  font-size: 0.875rem;
  color: var(--gris-light);
  line-height: 1.6;
  transition: color 0.3s;
}

.contact-info-text a:hover { color: var(--or); }

.maps-container {
  width: 100%;
  height: 280px;
  overflow: hidden;
  margin-top: 2rem;
  border: 1px solid rgba(255,255,255,0.07);
  filter: grayscale(0.4) invert(0.9) hue-rotate(180deg);
}

.maps-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ─── TESTIMONIALS ───────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 6rem clamp(1.5rem, 6vw, 7rem);
}

.testimonial-card {
  padding: 2.5rem;
  background: var(--noir-soft);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: border-color 0.3s, transform 0.4s var(--ease-out-expo);
}

.testimonial-card:hover {
  border-color: var(--or);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--or);
  opacity: 0.3;
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--gris-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bleu);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--or);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blanc);
}

.author-role {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gris);
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

.stars { color: var(--or); font-size: 0.75rem; margin-bottom: 1rem; }

/* ─── POLICY PAGES ───────────────────────────── */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem clamp(1.5rem, 6vw, 7rem) 6rem;
}

.policy-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blanc);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.policy-content p {
  font-size: 0.9rem;
  color: var(--gris-light);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.policy-content ul {
  padding-left: 1.5rem;
  color: var(--gris-light);
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}

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

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1100px) {
  #about-home { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { height: 400px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item:first-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .hero-stats { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item:first-child { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  #cta-band { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .nav-link { font-size: clamp(2.5rem, 10vw, 5rem); }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  button, a { cursor: pointer; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .nav-footer { flex-direction: column; gap: 1.5rem; }
}

/* ─── LANG SWITCHER ──────────────────────────── */
#lang-switcher {
  display: flex;
  align-items: center;
  z-index: 600;
  position: relative;
}

/* ── DROPDOWN WRAPPER ──────────────────────── */
.lang-dropdown {
  position: relative;
}

/* ── TRIGGER BUTTON ────────────────────────── */
.lang-trigger {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: var(--gris);
  font-family: var(--font-mono), "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
  white-space: nowrap;
  line-height: 1;
}

.lang-trigger:hover,
.lang-dropdown.is-open .lang-trigger {
  border-color: var(--or);
  color: var(--or);
  background: rgba(212,160,23,0.07);
}

.lang-trigger .lang-flag {
  font-size: 1.1rem;
  line-height: 1;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Twemoji Mozilla", sans-serif;
}

.lang-trigger .lang-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.lang-caret {
  font-size: 0.6rem;
  opacity: 0.6;
  transition: transform 0.2s;
  font-family: inherit;
}

.lang-dropdown.is-open .lang-caret {
  transform: rotate(180deg);
}

/* ── DROPDOWN MENU ─────────────────────────── */
.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,0.1);
  list-style: none;
  padding: 0.35rem 0;
  margin: 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  z-index: 1000;
}

.lang-dropdown.is-open .lang-menu {
  display: block;
  animation: menuFadeIn 0.18s ease;
}

@keyframes menuFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── MENU ITEMS ────────────────────────────── */
.lang-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  color: var(--gris);
  font-family: var(--font-mono), "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

.lang-option:hover {
  background: rgba(255,255,255,0.05);
  color: var(--blanc);
}

.lang-option.is-active {
  color: var(--or);
  background: rgba(212,160,23,0.08);
}

.lang-option .lang-flag {
  font-size: 1.1rem;
  line-height: 1;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Twemoji Mozilla", sans-serif;
  flex-shrink: 0;
}

.lang-option-name {
  flex: 1;
  font-weight: 500;
}

.lang-option-code {
  font-weight: 700;
  opacity: 0.5;
  font-size: 0.58rem;
}

.lang-option.is-active .lang-option-code {
  opacity: 1;
  color: var(--or);
}

/* ── FOOTER VARIANT ────────────────────────── */
.lang-dropdown--footer .lang-trigger {
  border-color: rgba(255,255,255,0.1);
  font-size: 0.6rem;
}

.lang-dropdown--footer .lang-menu {
  top: auto;
  bottom: calc(100% + 8px);
  background: #111;
}

/* ─── I18N LOADING TRANSITION ────────────────── */
body.i18n-loading [data-i18n] {
  opacity: 0.4;
  transition: opacity 0.15s;
}

body:not(.i18n-loading) [data-i18n] {
  opacity: 1;
  transition: opacity 0.25s 0.05s;
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 768px) {
  .lang-trigger {
    padding: 0.35rem 0.6rem;
    font-size: 0.62rem;
  }
  .lang-menu {
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  .lang-trigger .lang-label { display: none; }
  .lang-trigger { padding: 0.35rem 0.5rem; gap: 0.2rem; }
  .lang-trigger .lang-flag { font-size: 1.2rem; }
  .lang-caret { display: none; }
}
