:root {
  --noir: #050505;
  --noir-soft: #0d0d0d;
  --or: #c9a84c;
  --or-light: #f0d080;
  --blanc: #f5f0e8;
  --muted: rgba(245, 240, 232, 0.58);
  --line: rgba(201, 168, 76, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--noir);
  color: var(--blanc);
  font-family: Montserrat, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-nav {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 16px 48px;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.68));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.logo {
  display: block;
  width: auto;
  height: 58px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
}

.nav-links a {
  position: relative;
  color: rgba(245, 240, 232, 0.68);
  font-size: 11px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 1px;
  background: var(--or);
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--or-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 22px;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(201, 168, 76, 0.34);
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.035);
  color: rgba(240, 208, 128, 0.92);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-phone:hover {
  border-color: var(--or);
  background: rgba(201, 168, 76, 0.12);
  color: var(--or-light);
  transform: translateY(-1px);
}

.phone-icon {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 24px;
  border: 1px solid rgba(201, 168, 76, 0.78);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.06));
  color: var(--or-light);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  border-color: var(--or);
  background: var(--or);
  color: #080808;
  transform: translateY(-1px);
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--or);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--or);
  color: #080808;
}

.btn-secondary {
  background: transparent;
  color: var(--or-light);
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--or);
}

.nav-mobile {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: rgba(5, 5, 5, 0.98);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  border: 0;
  background: transparent;
  color: var(--or);
  font-size: 34px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 140px 28px 110px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(5, 5, 5, 0.28), rgba(5, 5, 5, 0.88)),
    url("./assets/event-hero.jpg") center/cover;
  filter: grayscale(20%);
  transform: scale(1.02);
}

.hero-content,
.hero-stats {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 820px;
  text-align: center;
}

.hero-eyebrow,
.section-eyebrow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  color: var(--or);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-eyebrow::before,
.hero-eyebrow::after,
.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--or);
}

.hero-title,
.section-title,
.contact-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  line-height: 1.05;
}

.hero-title {
  margin-top: 20px;
  font-size: clamp(74px, 13vw, 168px);
  letter-spacing: 8px;
}

.hero-divider {
  width: 82px;
  height: 1px;
  margin: 22px auto;
  background: var(--or);
}

.hero-subtitle {
  color: var(--or-light);
  font-size: clamp(15px, 2vw, 22px);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-desc {
  max-width: 660px;
  margin: 22px auto 34px;
  color: rgba(245, 240, 232, 0.72);
  font-size: 14px;
  line-height: 2;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-stats {
  position: absolute;
  right: 48px;
  bottom: 44px;
  display: flex;
  gap: 18px;
}

.stat {
  min-width: 138px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.5);
}

.stat-num {
  color: var(--or);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
}

.stat-label {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.band {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 32px;
  padding: 22px 32px;
  border-block: 1px solid var(--line);
  background: var(--noir-soft);
}

.band-item {
  color: rgba(245, 240, 232, 0.7);
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.trusted-section {
  padding: 72px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--noir);
}

.trusted-header {
  max-width: 1180px;
  margin: 0 auto 34px;
  padding: 0 48px;
  text-align: center;
}

.trusted-title {
  margin-top: 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.08;
}

.trusted-sub {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.trusted-marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  border-block: 1px solid rgba(201, 168, 76, 0.1);
  background: rgba(255, 255, 255, 0.018);
}

.trusted-marquee::before,
.trusted-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(18vw, 180px);
  pointer-events: none;
}

.trusted-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--noir), transparent);
}

.trusted-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--noir), transparent);
}

.trusted-track {
  display: flex;
  flex: 0 0 auto;
  gap: 34px;
  min-width: max-content;
  padding: 24px 17px;
  animation: trusted-scroll 34s linear infinite;
}

.trusted-marquee:hover .trusted-track {
  animation-play-state: paused;
}

.trusted-logo {
  display: grid;
  place-items: center;
  width: clamp(190px, 20vw, 280px);
  height: 96px;
  padding: 18px 26px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  background: rgba(5, 5, 5, 0.72);
}

.trusted-logo img {
  display: block;
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
  opacity: 0.86;
  filter: grayscale(100%);
}

@keyframes trusted-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section,
.why-section,
.contact-section {
  padding: 96px 48px;
}

.section-header {
  margin: 0 auto 56px;
}

.centered {
  text-align: center;
}

.section-title {
  margin-top: 18px;
  font-size: clamp(38px, 5vw, 68px);
}

.section-title span {
  color: var(--or);
}

.cards-grid,
.why-grid,
.contact-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  gap: 22px;
}

.cards-grid {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.why-card,
.contact-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.card-img {
  min-height: 210px;
  background-position: center;
  background-size: cover;
  filter: grayscale(20%);
}

.transport {
  background-image: url("https://images.unsplash.com/photo-1563720223185-11003d516935?w=800&q=80");
}

.seminaire {
  background-image: url("https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=800&q=80");
}

.activites {
  background-image: url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?w=800&q=80");
}

.event {
  background-image: url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?w=800&q=80");
}

.card-body {
  padding: 26px;
}

.card-icon {
  margin-bottom: 18px;
  color: var(--or);
  font-size: 10px;
  letter-spacing: 2px;
}

.card-title,
.why-title {
  color: var(--blanc);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.1;
}

.card-desc,
.why-desc {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.why-section {
  background: var(--noir-soft);
  border-block: 1px solid var(--line);
}

.why-grid {
  grid-template-columns: repeat(4, 1fr);
}

.why-card {
  min-height: 190px;
  padding: 30px;
}

.contact-section {
  text-align: center;
}

.contact-title {
  margin-top: 22px;
  font-size: clamp(38px, 5vw, 70px);
}

.contact-sub {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  margin-bottom: 42px;
}

.contact-item {
  padding: 26px;
}

.contact-item-label {
  color: var(--or);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-item-val {
  margin-top: 12px;
  color: var(--blanc);
  font-size: 14px;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 34px 24px;
  border-top: 1px solid var(--line);
  color: rgba(245, 240, 232, 0.42);
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.footer-or-line {
  width: 42px;
  height: 1px;
  background: var(--or);
}

@media (max-width: 1100px) {
  .site-nav {
    display: flex;
    justify-content: space-between;
    padding: 14px 28px;
  }

  .nav-links,
  .nav-phone,
  .nav-cta {
    display: none;
  }

  .burger {
    display: block;
  }

  .cards-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-nav {
    padding: 14px 20px;
  }

  .logo {
    height: 48px;
  }

  .hero {
    min-height: 92vh;
    padding: 120px 20px 220px;
  }

  .hero-title {
    letter-spacing: 4px;
  }

  .hero-stats {
    right: 20px;
    left: 20px;
    bottom: 34px;
  }

  .stat {
    flex: 1;
    min-width: 0;
  }

  .section,
  .why-section,
  .contact-section {
    padding: 70px 20px;
  }

  .trusted-section {
    padding: 58px 0;
  }

  .trusted-header {
    padding: 0 20px;
  }

  .trusted-track {
    gap: 18px;
    padding: 18px 9px;
    animation-duration: 26s;
  }

  .trusted-logo {
    width: 178px;
    height: 82px;
    padding: 14px 18px;
  }

  .cards-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trusted-track {
    animation: none;
  }
}


/* === CORRECTION HEADER VEXORR - classes anciennes + premium === */
nav:not(.site-nav) {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 16px 48px;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.68));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.nav-left {
  display: contents;
}

.nav-left > a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

@media (max-width: 1100px) {
  nav:not(.site-nav) {
    display: flex;
    justify-content: space-between;
    padding: 14px 28px;
  }

  .nav-left {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 760px) {
  nav:not(.site-nav) {
    padding: 14px 20px;
  }
}

/* === SECTION NOTRE RÉSEAU - PHOTO PREMIUM VANS === */
.intro-section.vexorr-network-intro {
  padding: 92px 48px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 82px;
  align-items: center;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.vexorr-network-intro .intro-text {
  max-width: 620px;
}

.intro-stats-row {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.intro-stats-row .intro-stat {
  min-width: 138px;
  padding-left: 18px;
  border-left: 1px solid rgba(201, 168, 76, 0.34);
}

.intro-visual {
  position: relative;
  min-height: 520px;
}

.intro-visual-frame {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: #080808;
}

.intro-visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.04), rgba(5,5,5,0.34)),
    linear-gradient(90deg, rgba(5,5,5,0.22), transparent 42%);
  pointer-events: none;
}

.intro-visual-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(8%);
  transform: scale(1.01);
  transition: transform 0.65s ease, filter 0.65s ease;
}

.intro-visual:hover .intro-visual-frame img {
  transform: scale(1.045);
  filter: grayscale(0%);
}


.intro-visual-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 13px 18px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(12px);
  color: var(--or-light);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .intro-section.vexorr-network-intro {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 70px 20px;
  }

  .intro-visual,
  .intro-visual-frame {
    min-height: 0;
    height: 340px;
  }


  .intro-stats-row {
    gap: 24px;
  }
}


/* Nettoyage complet des cadres des images */
.cible-img::before,
.cible-img::after,
.cible-img-border{
display:none !important;
content:none !important;
border:none !important;
box-shadow:none !important;
outline:none !important;
}

.cible-block:hover .cible-img img{
transform:scale(1.04);
filter:grayscale(0%);
}

/* === VEXORR - Cartes prestations sans index + hover premium sobre === */
.card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateY(0);
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease,
    box-shadow 0.32s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(135deg, rgba(240, 208, 128, 0.16), transparent 36%),
    linear-gradient(180deg, transparent 54%, rgba(201, 168, 76, 0.08));
  transition: opacity 0.32s ease;
}

.card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  z-index: 2;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, var(--or-light), transparent);
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 208, 128, 0.46);
  background: rgba(255, 255, 255, 0.038);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(201, 168, 76, 0.08),
    0 0 34px rgba(201, 168, 76, 0.08);
}

.card:hover::before,
.card:hover::after {
  opacity: 1;
}

.card:hover::after {
  transform: scaleX(1);
}

.card-img {
  position: relative;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.42)),
    radial-gradient(circle at 50% 50%, rgba(240, 208, 128, 0.12), transparent 58%);
  transition: opacity 0.45s ease;
}

.card:hover .card-img {
  transform: scale(1.035);
  filter: grayscale(0%) contrast(1.04);
}

.card:hover .card-img::after {
  opacity: 1;
}

.card-body {
  position: relative;
  z-index: 3;
}

.card-icon {
  display: none !important;
}

.card-title {
  transition: color 0.28s ease, transform 0.28s ease;
}

.card-desc {
  transition: color 0.28s ease;
}

.card:hover .card-title {
  color: var(--or-light);
  transform: translateY(-2px);
}

.card:hover .card-desc {
  color: rgba(245, 240, 232, 0.72);
}

@media (prefers-reduced-motion: reduce) {
  .card,
  .card::before,
  .card::after,
  .card-img,
  .card-img::after,
  .card-title,
  .card-desc {
    transition: none;
  }

  .card:hover,
  .card:hover .card-img,
  .card:hover .card-title {
    transform: none;
  }
}

