
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ==== TOKENS ==== */
:root {
  --gold: #ff881a;
  --accent: #00FF01;
  --gold-light: #ffba75;
  --black: #0a0a0a;
  --off-white: #f8f6f1;
  --gray: #888;
  --serif: "Playfair Display", serif;
  --sans: "Inter", sans-serif;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ==== GLOBAL BODY ==== */
body {
  font-family: var(--sans);
  background: var(--off-white);
  color: var(--black);
  overflow-x: hidden;
  cursor: none; /* Custom cursor hides default */
}




/* Navigation styles moved to navbar.css */

/* ==== HERO ==== */
.hero-premium {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}
.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  transform: scale(1.08);
  transition: transform 12s var(--ease);
}
.hero-bg-wrapper.loaded {
  transform: scale(1);
}
.hero-img-premium {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-overlay-cinematic {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 0 80px 100px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}
.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow span {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: -1px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease) 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 420px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease) 0.8s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease) 1s forwards;
}
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 16px 36px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition:
    background 0.4s,
    border-color 0.4s,
    color 0.4s,
    transform 0.4s var(--ease);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}
.btn-ghost {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 3px;
  transition:
    color 0.3s,
    border-color 0.3s;
}
.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s forwards 2s;
}
.hero-scroll .vline {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulseHeight 2s ease-in-out infinite;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  writing-mode: vertical-rl;
}

/* ==== MARQUEE STRIP ==== */
.marquee-strip {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 20s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 0 30px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--black);
}
.marquee-item::after {
  content: "✦";
  font-size: 0.5rem;
}

/* ==== ABOUT EDITORIAL ==== */
.about-editorial {
  background: var(--off-white);
  padding: 140px 80px;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}
.editorial-visual {
  position: relative;
}
.editorial-img-wrap {
  position: relative;
  overflow: hidden;
  height: 650px;
}
.editorial-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease);
}
.editorial-img-wrap:hover img {
  transform: scale(1.05);
}
.editorial-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.editorial-badge .year {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--black);
}
.editorial-badge .label {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(0, 0, 0, 0.6);
}
.editorial-content {
  padding-right: 20px;
}
.label-tag {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.label-tag::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.label-tag span {
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}
.editorial-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 35px;
  color: var(--black);
}
.editorial-h2 em {
  font-style: italic;
  color: var(--gold);
}
.editorial-p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #666;
  margin-bottom: 50px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 50px;
}
.stat-block {
  padding: 25px 0;
  text-align: center;
}
.stat-block + .stat-block {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}
.stat-n {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-l {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  display: block;
  margin-top: 6px;
}
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  padding-bottom: 4px;
  transition:
    color 0.3s,
    border-color 0.3s;
}
.arrow-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ==== SERVICES (FORMATIONS) ==== */
.formations-section {
  background: rgb(188, 185, 185);
  padding: 140px 80px;
}
.section-header {
  max-width: 1300px;
  margin: 0 auto 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.section-header-left .sh-tag {
  font-size: 1.5rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
  font-weight: bold;
}
.section-header-left h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.sh-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 4px;
  transition:
    color 0.3s,
    border-color 0.3s;
  white-space: nowrap;
  align-self: flex-end;
}
.sh-link:hover {
  color: var(--green);
  border-color: var(--green);
}
.formations-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 380px 320px;
  gap: 2px;
}
.formation-tile {
  position: relative;
  overflow: hidden;
  background: #111;
}
.formation-tile.big {
  grid-row: span 2;
}
.formation-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.2s var(--ease),
    opacity 0.5s;
  opacity: 0.65;
}
.formation-tile:hover img {
  transform: scale(1.08);
  opacity: 0.5;
}
.tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
}
.tile-cat {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.tile-name {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.15;
}
.tile-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s,
    transform 0.4s var(--ease),
    color 0.3s;
}
.tile-btn::after {
  content: "→";
}
.formation-tile:hover .tile-btn {
  opacity: 1;
  transform: translateY(0);
  color: var(--gold);
}

/* ==== GALLERY ==== */
.gallery-section {
  background: var(--off-white);
  padding: 140px 80px;
}
.gallery-header {
  max-width: 1300px;
  margin: 0 auto 80px;
  text-align: center;
}
.gallery-header .sh-tag {
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.gallery-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}
.gallery-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
}
.gallery-cell {
  position: relative;
  overflow: hidden;
  background: #222;
}
.gallery-cell.tall {
  grid-row: span 2;
}
.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
  display: block;
}
.gallery-cell:hover img {
  transform: scale(1.08);
}
.gallery-cell-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}
.gallery-cell:hover .gallery-cell-overlay {
  background: rgba(0, 0, 0, 0.3);
}
.gallery-cell-overlay span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 10px 20px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery-cell:hover span {
  opacity: 1;
}

/* ==== TESTIMONIALS ==== */
.testimonials-section {
  background: var(--black);
  padding: 140px 80px;
}
.testimonials-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.testimonials-inner .sh-tag {
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 50px;
}
.big-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 50px;
  font-weight: 400;
}
.quote-author {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.quote-name {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}
.quote-role {
  font-size: 0.75rem;
  color: var(--gray);
}
.testimonials-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 50px;
}
.testimonials-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: background 0.3s;
}
.testimonials-dots span.active {
  background: var(--gold);
}

.cta-section-premium {
  position: relative;
  padding: 160px 80px;
  text-align: center;
  overflow: hidden;
  background: transparent; /* supprimer le background ici */
}

.cta-section-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../wetransfer/1000681579.jpg") top / cover no-repeat;
  z-index: 0;
}

.cta-section-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 245, 245, 0.5);
  z-index: 1;
}

.cta-section-premium > * {
  position: relative;
  z-index: 2;
}
.cta-content-premium {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content-premium .sh-tag {
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 30px;
}
.cta-content-premium h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  margin-bottom: 25px;
}
.cta-content-premium p {
  font-size: 1rem;
  color: #000;
  margin-bottom: 50px;
  line-height: 1.7;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline-white {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #000;
  padding: 16px 36px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition:
    border-color 0.4s,
    color 0.4s;
}
.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ==== FOOTER ==== */
.footer-premium {
  background: #050505;
  padding: 80px 80px 0;
}
.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-brand .logo-text h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 1px;
}
.footer-brand .logo-text span {
  color: var(--gold);
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 20px;
}
.footer-col h5 {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 25px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-col ul li,
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul a:hover {
  color: var(--gold);
}
.footer-base {
  max-width: 1300px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-base p,
.footer-base a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
}
.footer-base a {
  color: var(--gold);
  text-decoration: none;
}

/* ==== WHATSAPP ==== */
.wa-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s;
}
.wa-btn:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}
.wa-btn svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* ==== ANIMATIONS ==== */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes pulseHeight {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
}

/* ==== SCROLL REVEALS ==== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal.from-left {
  transform: translateX(-40px);
}
.reveal.from-right {
  transform: translateX(40px);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ==== MOBILE ==== */
@media (max-width: 1024px) {
  .editorial-grid {
    grid-template-columns: 1fr;
  }
  .formations-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .formation-tile.big {
    grid-row: span 1;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-cell.tall {
    grid-row: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 768px) {
  .nav-container {
    padding: 20px 24px;
  }
  .hero-content {
    padding: 0 24px 80px;
  }
  .hero-title {
    font-size: 2.8rem;
    letter-spacing: -0.5px;
  }
  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-editorial,
  .formations-section,
  .gallery-section,
  .testimonials-section,
  .cta-section-premium {
    padding: 80px 24px;
  }
  .formations-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .formation-tile {
    height: 280px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .footer-premium {
    padding: 60px 24px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
