/* ============================================================
   GRILLZ EMPIRE — style.css
   ============================================================ */

:root {
  --gold:        #C9A84C;
  --gold-light:  #F0D080;
  --gold-dark:   #8B6914;
  --black:       #111111;
  --dark:        #181818;
  --dark2:       #202020;
  --dark3:       #272727;
  --white:       #F0EBE0;
  --grey:        #777;
  --grey2:       #444;
  --night-blue:  #0a0f1e;
  --night-blue2: #0d1428;
  --night-blue3: #111a30;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: 'DM Sans', sans-serif; overflow-x: hidden; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 60px; transition: all .4s;
}
nav.scrolled {
  background: rgba(10,15,30,.97);
  border-bottom: 1px solid rgba(201,168,76,.1);
  backdrop-filter: blur(12px);
  padding: 10px 60px;
}
.nav-logo img { height: 60px; width: auto; border-radius: 50%; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(240,235,224,.65); text-decoration: none;
  font-size: .75rem; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500; transition: color .3s; position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .3s;
}
.nav-links a:hover, .nav-links a:hover::after { color: var(--gold); width: 100%; }
.nav-cta {
  background: var(--gold) !important; color: var(--black) !important;
  padding: 7px 20px !important; font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001; }
.hamburger span { width: 22px; height: 2px; background: var(--gold); display: block; }

/* Mobile */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 260px; height: 100vh;
  background: var(--night-blue2); z-index: 1100;
  display: flex; flex-direction: column; padding: 70px 36px 36px;
  gap: 24px; transition: right .4s cubic-bezier(.4,0,.2,1);
  border-left: 1px solid rgba(201,168,76,.08);
}
.mobile-menu.open { right: 0; }
.mobile-close { position: absolute; top: 18px; right: 18px; background: none; border: none; color: var(--grey); font-size: 1.1rem; cursor: pointer; }
.mobile-link { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; letter-spacing: 4px; color: var(--white); text-decoration: none; transition: color .3s; }
.mobile-link:hover { color: var(--gold); }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 1050; display: none; }
.mobile-overlay.show { display: block; }

/* ── HERO ── */
#hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(201,168,76,.07) 0%, transparent 70%);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  opacity: .45;
}
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(17,17,17,.55) 0%,
    rgba(17,17,17,.35) 50%,
    rgba(17,17,17,.7) 100%
  );
}
#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.particle {
  position: absolute; border-radius: 50%; background: var(--gold); opacity: 0;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: .5; }
  90%  { opacity: .15; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}
.hero-content { text-align: center; position: relative; z-index: 2; padding: 0 24px; max-width: 860px; }
.hero-tag {
  display: inline-block; font-size: .68rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; border: 1px solid rgba(201,168,76,.25); padding: 5px 18px;
  animation: fadeInDown .8s ease both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: clamp(3.5rem, 12vw, 10rem);
  line-height: .9; letter-spacing: 2px; color: var(--white); margin-bottom: 18px;
}
.hero-title .line-1 {
  display: block;
  animation: slideInLeft .9s cubic-bezier(.16,1,.3,1) .2s both;
}
.hero-title span:not(.line-1) {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block;
  animation: slideInRight .9s cubic-bezier(.16,1,.3,1) .35s both;
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(.9rem, 2vw, 1.2rem); color: var(--grey); margin-bottom: 36px;
  animation: fadeInUp .8s ease .5s both;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; animation: fadeInUp .8s ease .65s both; }
.hero-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; animation: fadeInUp .8s ease .8s both; }
.hero-badge {
  font-size: .65rem; letter-spacing: 1.5px; color: rgba(201,168,76,.7);
  border: 1px solid rgba(201,168,76,.15); padding: 5px 14px;
}
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInUp   { from{opacity:0;transform:translateY(20px)}  to{opacity:1;transform:translateY(0)} }
@keyframes slideInLeft  { from{opacity:0;transform:translateX(-40px)} to{opacity:1;transform:translateX(0)} }
@keyframes slideInRight { from{opacity:0;transform:translateX(40px)}  to{opacity:1;transform:translateX(0)} }
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); }
.scroll-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); animation: scrollBounce 2s ease infinite; }
@keyframes scrollBounce { 0%,100%{transform:translateY(0);opacity:.4} 50%{transform:translateY(10px);opacity:1} }

/* ── BOUTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black); border: none; padding: 14px 32px;
  font-size: .78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: all .3s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(201,168,76,.3); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(201,168,76,.4); color: var(--gold);
  padding: 14px 32px; font-size: .78rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  cursor: pointer; transition: all .3s; background: transparent;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.btn-outline:hover { background: rgba(201,168,76,.07); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ── STATS ── */
#stats {
  padding: 44px 60px;
  background: var(--night-blue);
  border-top: 1px solid rgba(201,168,76,.08);
  border-bottom: 1px solid rgba(201,168,76,.08);
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; max-width: 900px; margin: 0 auto; text-align: center; }
.stat-item { padding: 12px; }
.stat-num {
  font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: clamp(2.2rem,5vw,3.5rem);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-suf { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--gold); margin-left: 2px; }
.stat-item p { color: var(--grey); font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 5px; }

/* ── SECTIONS COMMUNES ── */
section { padding: 90px 60px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag { font-size: .62rem; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 10px; }
.section-header h2 { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: clamp(2.2rem,6vw,4.5rem); letter-spacing: 3px; line-height: 1; margin-bottom: 12px; }
.section-desc { color: var(--grey); font-size: .88rem; line-height: 1.7; margin-bottom: 18px; }
.gold-bar { width: 44px; height: 2px; background: linear-gradient(to right, var(--gold), transparent); margin: 0 auto; }

/* ── RÉALISATIONS ── */
#realisations { background: var(--night-blue2); }
.filter-tabs { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.tab {
  background: transparent; border: 1px solid rgba(201,168,76,.18);
  color: var(--grey); padding: 6px 18px; font-size: .7rem; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer; transition: all .3s; font-family: 'DM Sans', sans-serif;
}
.tab.active, .tab:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; max-width: 1000px; margin: 0 auto; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--dark3); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.85) 0%, transparent 55%);
  opacity: 0; transition: opacity .4s; display: flex; align-items: flex-end; padding: 18px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; letter-spacing: 2px; }
.gallery-overlay p { font-size: .7rem; color: var(--gold); }
.gallery-tag { position: absolute; top: 10px; left: 10px; color: var(--black); font-size: .58rem; font-weight: 700; letter-spacing: 2px; padding: 3px 8px; text-transform: uppercase; }
.gallery-tag-chrome { background: #C0C0C0; }
.gallery-tag-gold   { background: var(--gold); }
.gallery-tag-custom { background: #555; color: var(--white); }
.gallery-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; background: var(--dark3); }
.gallery-placeholder span { font-size: 2rem; opacity: .2; }
.gallery-placeholder p { font-size: .62rem; color: var(--grey2); letter-spacing: 2px; text-transform: uppercase; }
.gallery-item.hidden { display: none; }
.gallery-more { text-align: center; margin-top: 28px; }
.realisations-cta { text-align: center; margin-top: 40px; }

/* ── PROCESS ── */
#process { background: var(--night-blue); }
.process-steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; max-width: 1100px; margin: 0 auto 40px; flex-wrap: wrap;
}
.process-step {
  flex: 1; min-width: 200px; text-align: center; padding: 32px 20px;
  background: var(--night-blue3); border: 1px solid rgba(201,168,76,.07);
  position: relative; transition: border-color .3s;
}
.process-step:hover { border-color: rgba(201,168,76,.25); }
.step-icon { font-size: 2rem; margin-bottom: 10px; }
.step-num-big {
  font-family: 'Cormorant Garamond', serif; font-size: 3.5rem;
  color: rgba(201,168,76,.1); line-height: 1; margin-bottom: 10px;
}
.process-step h3 { font-size: .85rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 10px; color: var(--gold); }
.process-step p { font-size: .8rem; color: var(--grey); line-height: 1.6; }
.process-arrow { font-size: 1.5rem; color: rgba(201,168,76,.3); align-self: center; padding: 0 4px; }
.process-cta { text-align: center; }

/* ── PRIX ── */
#prix { background: var(--night-blue3); }
.prix-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1000px; margin: 0 auto 20px; }
.prix-card {
  background: var(--night-blue2); border: 1px solid rgba(201,168,76,.1);
  padding: 36px 28px; text-align: center; position: relative;
  transition: all .3s; display: flex; flex-direction: column; gap: 20px;
}
.prix-card:hover { border-color: rgba(201,168,76,.3); transform: translateY(-4px); }
.prix-card-featured {
  border-color: rgba(201,168,76,.4);
  background: var(--night-blue);
  transform: scale(1.03);
}
.prix-card-featured:hover { transform: scale(1.03) translateY(-4px); }
.prix-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--black);
  font-size: .65rem; font-weight: 700; letter-spacing: 2px; padding: 4px 14px;
  white-space: nowrap;
}
.prix-icon { font-size: 2.2rem; }
.prix-card h3 { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.6rem; letter-spacing: 3px; }
.prix-amount { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.prix-from { font-size: .65rem; color: var(--grey); letter-spacing: 2px; text-transform: uppercase; }
.prix-val {
  font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 3rem; letter-spacing: 2px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.prix-currency { font-size: .75rem; color: var(--gold); letter-spacing: 2px; }
.prix-features { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.prix-features li { font-size: .8rem; color: var(--grey); }
.prix-note { text-align: center; font-size: .75rem; color: var(--grey2); max-width: 600px; margin: 0 auto; }

/* ── AVIS ── */
#avis { background: var(--night-blue2); }
.avis-rating { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 12px; }
.avis-rating .stars { color: var(--gold); font-size: 1rem; }
.avis-rating strong { font-size: .95rem; }
.avis-rating span { color: var(--grey); font-size: .78rem; }
.reviews-wrapper { overflow: hidden; position: relative; margin-top: 40px; }
.reviews-wrapper::before,
.reviews-wrapper::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.reviews-wrapper::before { left: 0; background: linear-gradient(to right, var(--night-blue2), transparent); }
.reviews-wrapper::after  { right: 0; background: linear-gradient(to left, var(--night-blue2), transparent); }
.reviews-track { display: flex; gap: 18px; width: max-content; animation: scrollReviews 35s linear infinite; }
.reviews-track:hover { animation-play-state: paused; }
@keyframes scrollReviews { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.review-card {
  background: var(--night-blue3); border: 1px solid rgba(201,168,76,.07);
  padding: 22px; width: 290px; flex-shrink: 0; transition: border-color .3s;
}
.review-card:hover { border-color: rgba(201,168,76,.2); }
.review-stars { color: var(--gold); font-size: .85rem; margin-bottom: 10px; }
.review-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: .82rem; line-height: 1.7; color: #bbb; margin-bottom: 14px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: .95rem; color: var(--black); }
.review-name { font-size: .8rem; font-weight: 600; }
.review-loc  { font-size: .68rem; color: var(--grey); }

/* ── CONTACT ── */
#contact {
  background:
    linear-gradient(to bottom, rgba(10,15,30,.82) 0%, rgba(10,15,30,.88) 100%),
    url('Nos-realisation/video/contact.png') center/cover no-repeat;
  position: relative;
}
.contact-layout { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
.contact-main { display: flex; flex-direction: column; gap: 12px; }
.contact-big-btn {
  display: flex; align-items: center; gap: 16px;
  text-decoration: none; color: var(--white);
  padding: 20px 24px; border: 1px solid rgba(201,168,76,.15);
  transition: all .3s; background: var(--night-blue3);
}
.contact-big-btn:hover { border-color: var(--gold); background: var(--night-blue2); transform: translateX(4px); }
.contact-big-btn i { font-size: 1.6rem; color: #25d366; min-width: 28px; }
.contact-insta i { color: #e1306c; }
.contact-tiktok i { color: var(--white); }
.contact-big-btn strong { display: block; font-size: .88rem; margin-bottom: 3px; }
.contact-big-btn span { font-size: .75rem; color: var(--grey); }
.contact-big-btn .arrow { margin-left: auto; color: var(--grey); font-size: .9rem; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-item span { font-size: 1.2rem; min-width: 26px; }
.contact-info-item strong { display: block; font-size: .82rem; margin-bottom: 3px; }
.contact-info-item p { font-size: .8rem; color: var(--grey); }
.contact-info-item small { font-size: .7rem; color: var(--grey2); }
.map-wrap {
  margin-top: 12px;
  border: 1px solid rgba(201,168,76,.15);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.map-wrap iframe {
  display: block;
  filter: grayscale(30%) contrast(1.1);
  width: 100% !important;
  max-width: 100%;
  height: 200px;
}

/* ── FOOTER ── */
footer { background: var(--night-blue); border-top: 1px solid rgba(201,168,76,.08); padding: 50px 60px 24px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; max-width: 1000px; margin: 0 auto 36px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.8rem; letter-spacing: 4px; background: linear-gradient(135deg, var(--gold-light), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block; margin-bottom: 10px; }
.footer-brand p { color: var(--grey); font-size: .78rem; line-height: 1.7; max-width: 260px; margin-bottom: 16px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 34px; height: 34px; border: 1px solid rgba(201,168,76,.15); display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--grey); font-size: .9rem; transition: all .3s; }
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav h4 { font-size: .62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.footer-nav a { text-decoration: none; color: var(--grey); font-size: .8rem; transition: color .3s; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(201,168,76,.06); padding-top: 18px; text-align: center; max-width: 1000px; margin: 0 auto; }
.footer-bottom p { color: var(--grey2); font-size: .7rem; }

/* ── COLLABORATION ── */
#collab { background: var(--night-blue3); }
.collab-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px; max-width: 1000px; margin: 0 auto 40px;
}
.collab-card {
  background: var(--night-blue2); border: 1px solid rgba(201,168,76,.08);
  padding: 28px 20px; text-align: center; transition: all .3s;
}
.collab-card:hover { border-color: rgba(201,168,76,.3); transform: translateY(-4px); }
.collab-icon { font-size: 2rem; margin-bottom: 14px; }
.collab-card h3 { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.1rem; letter-spacing: 2px; color: var(--gold); margin-bottom: 10px; }
.collab-card p { font-size: .8rem; color: var(--grey); line-height: 1.6; }
.collab-cta { text-align: center; }
.collab-cta p { color: var(--grey); font-size: .85rem; margin-bottom: 16px; }

/* ── COLLAB FORM + VISUAL ── */
.collab-form-section {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  max-width: 1000px;
  margin: 50px auto 0;
  align-items: center;
}

/* Image rotative */
.collab-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.collab-spin-wrap {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.collab-spin-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-right-color: rgba(201,168,76,.3);
  animation: spinRing 4s linear infinite;
}
.collab-spin-ring::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-bottom-color: var(--gold-light);
  border-left-color: rgba(201,168,76,.2);
  animation: spinRing 6s linear infinite reverse;
}
@keyframes spinRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.collab-spin-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,.25);
  animation: floatImg 4s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(201,168,76,.15);
}
@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.collab-visual-label {
  font-size: .65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
}

/* Formulaire */
.collab-form-wrap {
  background: var(--night-blue2);
  border: 1px solid rgba(201,168,76,.1);
  padding: 36px 32px;
}
.collab-form-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 6px;
}
.collab-form-sub {
  font-size: .78rem;
  color: var(--grey);
  margin-bottom: 24px;
}
.collab-form { display: flex; flex-direction: column; gap: 16px; }
.collab-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.collab-field { display: flex; flex-direction: column; gap: 6px; }
.collab-field label {
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.collab-field input,
.collab-field select,
.collab-field textarea {
  background: var(--night-blue);
  border: 1px solid rgba(201,168,76,.15);
  color: var(--white);
  padding: 11px 14px;
  font-size: .82rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color .3s;
  resize: none;
  appearance: none;
}
.collab-field input::placeholder,
.collab-field textarea::placeholder { color: var(--grey2); }
.collab-field input:focus,
.collab-field select:focus,
.collab-field textarea:focus { border-color: rgba(201,168,76,.5); }
.collab-field select option { background: var(--night-blue); color: var(--white); }
.collab-submit { width: 100%; justify-content: center; margin-top: 4px; }

/* ── BOUTON WHATSAPP FLOTTANT ── */
.wa-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 4000;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all .3s; animation: waPulse 2s ease infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,.7); }
}

/* ── TOAST ── */
.toast { position: fixed; bottom: 24px; right: 24px; z-index: 5000; background: var(--gold); color: var(--black); padding: 11px 20px; font-weight: 700; font-size: .78rem; letter-spacing: 1px; transform: translateY(70px); opacity: 0; transition: all .4s cubic-bezier(.34,1.56,.64,1); }
.toast.show { transform: translateY(0); opacity: 1; }

/* ── ANIMATIONS ── */
.reveal-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav, nav.scrolled { padding: 14px 28px; }
  section { padding: 70px 28px; }
  #stats { padding: 36px 28px; }
  .prix-grid { grid-template-columns: 1fr 1fr; max-width: 700px; }
  .prix-card-featured { transform: none; }
  .prix-card-featured:hover { transform: translateY(-4px); }
  .collab-grid { grid-template-columns: repeat(2,1fr); }
  .collab-form-section { grid-template-columns: 1fr; gap: 36px; }
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav, nav.scrolled { padding: 12px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 55px 20px; }
  #stats { padding: 28px 20px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .gallery { grid-template-columns: repeat(2,1fr); }
  .process-steps { flex-direction: column; gap: 0; }
  .process-step { min-width: unset; width: 100%; }
  .process-arrow { transform: rotate(90deg); align-self: center; padding: 8px 0; }
  .prix-grid { grid-template-columns: 1fr; max-width: 380px; }
  .collab-grid { grid-template-columns: repeat(2,1fr); }
  .collab-form-section { grid-template-columns: 1fr; gap: 28px; }
  .collab-form-row { grid-template-columns: 1fr; }
  .collab-spin-wrap { width: 200px; height: 200px; }
  .collab-spin-img { width: 155px; height: 155px; }
  .contact-layout { grid-template-columns: 1fr; gap: 30px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }
  .contact-big-btn { padding: 16px 18px; }
  .contact-big-btn i { font-size: 1.3rem; }
  .map-wrap iframe { height: 160px; }
}

@media (max-width: 480px) {
  section { padding: 48px 16px; }
  #stats { padding: 24px 16px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .gallery { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns a { text-align: center; justify-content: center; }
  .hero-badges { flex-direction: column; align-items: center; gap: 8px; }
  .hero-badge { font-size: .6rem; }
  .collab-grid { grid-template-columns: 1fr; }
  .prix-grid { max-width: 100%; }
  .filter-tabs { gap: 6px; }
  .tab { padding: 5px 12px; font-size: .65rem; }
  .process-step { padding: 24px 16px; }
  .contact-big-btn { flex-wrap: wrap; gap: 10px; }
  .contact-big-btn .arrow { display: none; }
  .footer-inner { gap: 24px; }
  .footer-nav { gap: 8px; }
  .nav-logo img { height: 48px; }
}
