/* ============================================================
   TOP CLEAN 84 — Détailing auto à domicile (Vaucluse)
   Design system extracted from brand logo
   ============================================================ */

:root {
  --primary: #1A3A6B;   /* deep navy */
  --primary-700: #14305a;
  --primary-900: #0c2247;
  --secondary: #2B8FD4; /* sky blue */
  --secondary-soft: #6fb8e8;
  --accent: #F5C518;    /* gold */
  --accent-deep: #d8a90a;
  --dark: #0D0D0D;
  --ink: #0c1a30;       /* near-navy text on light */
  --white: #FFFFFF;
  --light-bg: #F0F6FF;
  --muted: #5b6b82;     /* gray body on light */
  --muted-dark: #9db4d4;/* gray body on dark */

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-card: 0 18px 50px -22px rgba(13, 26, 48, 0.55);
  --shadow-soft: 0 10px 30px -16px rgba(13, 26, 48, 0.35);

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { margin: 0; }
p { margin: 0; }

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.01em;
}

/* eyebrow / accent label — gold on dark, gold-deep on light */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.eyebrow.on-dark { color: var(--accent); }
.eyebrow::before {
  content: "✦";
  font-size: 0.85em;
  color: var(--accent);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --btn-pad-y: 16px;
  --btn-pad-x: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 1.2em; height: 1.2em; flex: none; }
.btn:active { transform: translateY(1px) scale(0.995); }

.btn-gold {
  background: var(--accent);
  color: #1c1500;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px -12px rgba(245, 197, 24, 0.6);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -12px rgba(245, 197, 24, 0.7); }
/* gold shimmer sweep */
.btn-gold::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.75), transparent);
  transform: skewX(-18deg);
  animation: shimmer 3.6s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 60% { left: -120%; }
  100% { left: 130%; }
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.btn-navy { background: var(--primary); color: var(--white); }
.btn-navy:hover { background: var(--primary-700); transform: translateY(-2px); }

.btn-whatsapp { background: #25D366; color: #06320f; }
.btn-whatsapp:hover { background: #1fbe5b; transform: translateY(-2px); }

.btn-block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-700) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 30px -18px rgba(0,0,0,0.7);
}
/* subtle water texture overlay */
.site-header::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120px 60px at 12% -20%, rgba(43,143,212,0.35), transparent 70%),
    radial-gradient(160px 70px at 88% 140%, rgba(43,143,212,0.28), transparent 70%);
  pointer-events: none;
}
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-badge {
  width: 132px; height: 56px;
  display: grid; place-items: center;
  flex: none;
}
.brand-badge img { width: 100%; height: 100%; object-fit: contain; object-position: left center; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.45)); }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name b {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--white);
}
.brand-name span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary-soft);
  font-weight: 600;
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width .25s ease;
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 12px; }
.phone-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--accent);
  color: #1c1500;
  font-weight: 800;
  font-size: 15px;
  padding: 11px 18px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 10px 24px -12px rgba(245,197,24,0.7);
  transition: transform .18s ease, box-shadow .2s ease;
}
.phone-badge:hover { transform: translateY(-2px); }
.phone-badge svg { width: 17px; height: 17px; }

.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
}
.burger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: .25s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 74px 0 auto 0;
  z-index: 55;
  background: var(--primary-700);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 8px var(--gutter) 22px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.mobile-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 17px;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav .btn { margin-top: 16px; }

/* ============================================================
   SECTION PRIMITIVES
   ============================================================ */
section { position: relative; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.sec-dark { background: var(--primary); color: var(--white); }
.sec-deep {
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(43,143,212,0.22), transparent 60%),
    linear-gradient(180deg, var(--primary) 0%, #0a1c3a 100%);
  color: var(--white);
}
.sec-light { background: var(--light-bg); }

.sec-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); }
.sec-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 0.96;
  font-size: clamp(34px, 6vw, 60px);
  letter-spacing: 0.01em;
  color: var(--primary);
}
.sec-dark .sec-title, .sec-deep .sec-title { color: var(--white); }
.sec-title .gold { color: var(--accent); }
.gold-underline {
  width: 84px; height: 5px; border-radius: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  margin: 18px auto 0;
}
.sec-sub {
  margin-top: 18px;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  line-height: 1.6;
}
.sec-dark .sec-sub, .sec-deep .sec-sub { color: var(--muted-dark); }

/* sparkle divider */
.divider {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  color: var(--secondary);
  padding: 6px 0;
}
.divider::before, .divider::after {
  content: ""; height: 1px; width: min(120px, 22vw);
  background: linear-gradient(90deg, transparent, currentColor);
  opacity: 0.5;
}
.divider::after { background: linear-gradient(90deg, currentColor, transparent); }
.divider .spark { color: var(--accent); font-size: 18px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(1000px 600px at 78% 18%, rgba(43,143,212,0.28), transparent 55%),
    linear-gradient(160deg, var(--primary) 0%, #0a1a36 55%, var(--dark) 100%);
  overflow: hidden;
  padding-top: 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  width: 100%;
  padding-block: clamp(40px, 7vw, 70px);
}
.hero-copy { max-width: 620px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 0.98;
  text-transform: uppercase;
  margin-top: 18px;
  text-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.hero h1 .gold { color: var(--accent); }
.hero h1 .blue { color: var(--secondary); }
.hero-sub {
  margin-top: 30px;
  font-size: clamp(16px, 1.9vw, 20px);
  line-height: 1.7;
  color: var(--secondary-soft);
  max-width: 540px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.trust-item svg { width: 20px; height: 20px; color: var(--accent); flex: none; }

/* hero media */
.hero-media { position: relative; max-width: 440px; margin-inline: auto; width: 100%; }
.car-slot {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto !important;
  border-radius: 22px;
  background: linear-gradient(180deg, #0c2247, #0a1a36);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.hero-media .glow {
  position: absolute; inset: auto -8% -16% -8%;
  height: 120px;
  background: radial-gradient(60% 100% at 50% 0%, rgba(43,143,212,0.55), transparent 70%);
  filter: blur(8px);
  z-index: -1;
}
.hero-tag {
  position: absolute;
  left: -14px; bottom: -16px;
  background: var(--white);
  color: var(--primary);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 12px;
  font-weight: 700;
}
.hero-tag .big { font-family: var(--font-display); font-size: 26px; color: var(--primary); line-height: 1; }
.hero-tag small { display: block; font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: .04em; }
.hero-tag .star { color: var(--accent); font-size: 22px; }

/* animated water splash at bottom of hero */
.hero-water {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 160px;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.hero-water svg { position: absolute; bottom: 0; width: 200%; height: 100%; }
.wave1 { fill: rgba(43,143,212,0.18); animation: drift 14s linear infinite; }
.wave2 { fill: rgba(43,143,212,0.30); animation: drift 9s linear infinite reverse; }
@keyframes drift { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.scroll-hint {
  position: absolute;
  left: 50%; bottom: 24px;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.6);
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint .mouse {
  width: 22px; height: 34px; border: 2px solid rgba(255,255,255,0.4); border-radius: 12px;
  position: relative;
}
.scroll-hint .mouse::after {
  content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px;
  background: var(--accent); border-radius: 3px; transform: translateX(-50%);
  animation: scrolly 1.6s ease-in-out infinite;
}
@keyframes scrolly { 0%,100% { opacity: 0; top: 6px; } 50% { opacity: 1; top: 14px; } }

/* ============================================================
   SERVICES
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  position: relative;
  background: linear-gradient(180deg, var(--primary) 0%, #122a52 100%);
  border-radius: var(--radius);
  border-top: 3px solid var(--secondary);
  padding: 30px 28px 28px;
  color: var(--white);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card::before {
  content: "";
  position: absolute; right: -40px; top: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(43,143,212,0.25), transparent 70%);
  pointer-events: none;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -26px rgba(0,0,0,0.6); }
.card.featured {
  border-top-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent), var(--shadow-card);
}
.price-badge {
  position: absolute; top: 22px; right: 22px;
  background: var(--accent);
  color: #1c1500;
  font-weight: 800;
  font-size: 13px;
  padding: 7px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 18px -8px rgba(245,197,24,0.7);
  white-space: nowrap;
}
.best-tag {
  position: absolute; top: 0; left: 0;
  background: var(--accent);
  color: #1c1500;
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  padding: 6px 14px;
  border-bottom-right-radius: 12px;
}
.card-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.3);
  display: grid; place-items: center;
  margin-bottom: 20px;
  margin-top: 4px;
}
.card-icon svg { width: 30px; height: 30px; color: var(--accent); }
.card h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 5vw, 24px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 10px;
  white-space: nowrap;
}
/* category headers inside services */
.cat-head {
  margin: clamp(32px, 4vw, 48px) 0 20px;
}
.cat-head:first-of-type { margin-top: 0; }
.cat-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
  padding-bottom: 10px;
  border-bottom: 3px solid var(--accent);
}
.cat-label svg { color: var(--accent); flex: none; }

.card p { color: var(--muted-dark); font-size: 14.5px; line-height: 1.55; flex: 1; }
.card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.card-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted-dark);
  font-size: 14.5px;
  line-height: 1.4;
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.14);
  border: 1px solid rgba(245, 197, 24, 0.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5C518' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}
.card-list li b { color: #fff; font-weight: 700; }
.card .btn { margin-top: 22px; align-self: flex-start; }

.note-band {
  margin-top: 36px;
  border: 1.5px solid var(--accent);
  background: rgba(245,197,24,0.06);
  border-radius: 14px;
  padding: 18px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}
.sec-light .note-band { color: var(--ink); }
.note-band b { color: var(--primary); }

/* ============================================================
   POURQUOI (features)
   ============================================================ */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.feature {
  display: flex;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(26,58,107,0.06);
}
.feature-icon {
  width: 60px; height: 60px; flex: none;
  border-radius: 16px;
  background: linear-gradient(160deg, var(--primary), #16305c);
  display: grid; place-items: center;
}
.feature-icon svg { width: 30px; height: 30px; color: var(--accent); }
.feature h3 {
  font-family: var(--font-display);
  font-size: 21px;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.feature p { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ============================================================
   ZONE
   ============================================================ */
.zone-block {
  margin-top: 8px;
  border: 1.5px solid rgba(245,197,24,0.5);
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 4vw, 50px);
  align-items: center;
}
.zone-map {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: #0a1a36;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.zone-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fr-land {
  fill: rgba(43, 143, 212, 0.16);
  stroke: var(--secondary-soft);
  stroke-width: 1.1;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.fr-pulse {
  transform-box: view-box;
  transform-origin: 70px 58px;
  animation: frpulse 2.2s ease-out infinite;
}
@keyframes frpulse {
  0%   { transform: scale(0.4); opacity: 0.85; }
  100% { transform: scale(3.6); opacity: 0; }
}
.fr-core {
  transform-box: view-box;
  transform-origin: 70px 58px;
  animation: frcore 2.2s ease-in-out infinite;
}
@keyframes frcore {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.75; transform: scale(1.25); }
}
.fr-twinkle {
  transform-box: fill-box;
  transform-origin: center;
  animation: frtwinkle 2.6s ease-in-out infinite;
}
@keyframes frtwinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.5) rotate(0deg); }
  50%      { opacity: 0.95; transform: scale(1) rotate(45deg); }
}
.zone-map .region-label {
  position: absolute; bottom: 16px;
  font-family: var(--font-display);
  font-size: 30px; color: rgba(255,255,255,0.10);
  letter-spacing: 0.1em;
}
.cities {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 6px;
}
.city {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600; font-size: 14.5px;
  transition: .2s;
}
.city:hover { background: rgba(245,197,24,0.14); border-color: rgba(245,197,24,0.5); }
.city .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.zone-cta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}
.contact-info .big-phone {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  color: var(--primary);
  display: inline-flex; align-items: center; gap: 14px;
  letter-spacing: 0.02em;
  margin-top: 6px;
}
.contact-info .big-phone svg { width: 0.7em; height: 0.7em; color: var(--accent); }
.contact-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(26,58,107,0.1);
  font-size: 16px; font-weight: 600; color: var(--ink);
}
.contact-row .ic {
  width: 44px; height: 44px; flex: none;
  border-radius: 12px;
  background: var(--light-bg);
  display: grid; place-items: center;
}
.contact-row .ic svg { width: 22px; height: 22px; color: var(--primary); }
.contact-row small { display: block; font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: 0.04em; }
.socials { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.social {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 16px; border-radius: 12px;
  background: var(--primary); color: var(--white);
  font-weight: 600; font-size: 14px;
  transition: .2s;
}
.social:hover { transform: translateY(-2px); background: var(--primary-700); }
.social svg { width: 18px; height: 18px; }

/* form card */
.form-card {
  background: linear-gradient(180deg, var(--primary) 0%, #0c2247 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(245,197,24,0.3);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-card);
  color: var(--white);
}
.form-card h3 {
  font-family: var(--font-display);
  font-size: 26px; text-transform: uppercase; letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.form-card .form-lead { color: var(--muted-dark); font-size: 14.5px; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
/* photo upload drop zone */
.photo-drop {
  border: 2px dashed rgba(245,197,24,0.4);
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  background: rgba(255,255,255,0.03);
}
.photo-drop:hover, .photo-drop.over {
  border-color: var(--accent);
  background: rgba(245,197,24,0.07);
}
.photo-drop svg { color: var(--accent); margin-bottom: 10px; }
.photo-drop p { color: rgba(255,255,255,0.75); font-size: 14px; margin: 0; }
.photo-drop small { color: var(--muted-dark); font-size: 12px; margin-top: 6px; display: block; }
.drop-link { color: var(--accent); font-weight: 600; cursor: pointer; }
.photo-previews {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 12px;
}
.photo-thumb {
  position: relative;
  width: 72px; height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid rgba(245,197,24,0.35);
  flex: none;
}
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-thumb button {
  position: absolute; top: 3px; right: 3px;
  width: 20px; height: 20px;
  background: rgba(13,26,48,0.85);
  border: none; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center;
  color: #fff; font-size: 13px; line-height: 1;
  padding: 0;
}
.photo-count {
  font-size: 12px; color: var(--accent);
  margin-top: 6px; font-weight: 600;
}

.field label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--secondary-soft); margin-bottom: 7px; letter-spacing: 0.02em;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 14px 15px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.4); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23F5C518' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.field select option { color: #0c1a30; }
.field select optgroup { color: #0c1a30; font-weight: 700; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.1);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #ff6b6b; }
.field .err { display: none; color: #ff9a9a; font-size: 12.5px; margin-top: 6px; }
.field.invalid .err { display: block; }
.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.form-success.show { display: block; }
.form-success .check {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 50%; background: rgba(37,211,102,0.15);
  border: 2px solid #25D366;
  display: grid; place-items: center;
}
.form-success .check svg { width: 32px; height: 32px; color: #25D366; }
.form-success h4 { font-family: var(--font-display); font-size: 24px; text-transform: uppercase; margin-bottom: 8px; }
.form-success p { color: var(--muted-dark); font-size: 15px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, #0a1a36 0%, var(--dark) 100%);
  color: var(--white);
  padding: clamp(54px, 7vw, 80px) 0 0;
}
.footer-top { text-align: center; }
.footer-logo {
  width: 230px; height: 116px; margin: 0 auto 14px;
}
.footer-logo img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 8px 22px rgba(0,0,0,0.5)); }
.footer-tagline { color: var(--secondary-soft); font-size: 16px; margin-top: 4px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: clamp(40px, 6vw, 60px) 0;
  margin-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-cols h4 {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px; font-weight: 700;
}
.footer-cols a, .footer-cols p {
  display: block; color: rgba(255,255,255,0.72);
  font-size: 15px; padding: 7px 0; transition: color .2s;
}
.footer-cols a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.footer-bottom .spark { color: var(--accent); }

/* ============================================================
   FLOATING MOBILE CALL BUTTON
   ============================================================ */
.float-call {
  display: none;
  position: fixed;
  left: 50%; bottom: 22px;
  transform: translateX(-50%);
  z-index: 70;
  align-items: center; gap: 10px;
  background: var(--accent);
  color: #1c1500;
  font-weight: 800; font-size: 16px;
  padding: 15px 26px;
  border-radius: 999px;
  box-shadow: 0 14px 34px -10px rgba(245,197,24,0.7);
}
.float-call::before {
  content: ""; position: absolute; inset: 0; border-radius: 999px;
  border: 2px solid var(--accent);
  animation: ring 1.8s ease-out infinite;
}
@keyframes ring {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.45); opacity: 0; }
}
.float-call svg { width: 20px; height: 20px; }

/* ============================================================
   GALERIE / LIGHTBOX
   ============================================================ */
.gallery {
  columns: 3;
  column-gap: 20px;
}
.shot {
  display: block;
  width: 100%;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  background: none;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  break-inside: avoid;
  box-shadow: 0 18px 40px -24px rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.shot img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease, filter .3s ease;
}
.shot::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,18,38,0.85));
  opacity: 0;
  transition: opacity .3s ease;
}
.shot-tag {
  position: absolute;
  left: 14px; bottom: 12px;
  z-index: 2;
  color: #fff;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
  display: inline-flex; align-items: center; gap: 7px;
}
.shot-tag::before { content: "✦"; color: var(--accent); }
.shot:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -22px rgba(0,0,0,0.85); }
.shot:hover img { transform: scale(1.05); }
.shot:hover::after,
.shot:focus-visible::after { opacity: 1; }
.shot:hover .shot-tag,
.shot:focus-visible .shot-tag { opacity: 1; transform: none; }
.shot:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.lightbox {
  position: fixed; inset: 0;
  z-index: 100;
  background: rgba(6,14,28,0.94);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 56px);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lb-figure { margin: 0; max-width: min(900px, 92vw); max-height: 88vh; display: flex; flex-direction: column; align-items: center; }
.lb-figure img {
  max-width: 100%; max-height: 80vh;
  border-radius: 14px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.9);
  border: 1px solid rgba(255,255,255,0.12);
}
.lb-figure figcaption {
  margin-top: 16px; color: #fff; font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
}
.lb-figure figcaption::before { content: "✦"; color: var(--accent); }
.lb-close, .lb-nav {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
  border-radius: 50%;
  transition: background .2s ease, transform .2s ease;
}
.lb-close { top: 20px; right: 20px; width: 48px; height: 48px; font-size: 28px; line-height: 1; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 56px; height: 56px; font-size: 34px; line-height: 1; }
.lb-prev { left: clamp(8px, 2vw, 28px); }
.lb-next { right: clamp(8px, 2vw, 28px); }
.lb-close:hover, .lb-nav:hover { background: var(--accent); color: #1c1500; }
.lb-nav:hover { transform: translateY(-50%) scale(1.08); }

@media (max-width: 1024px) { .gallery { columns: 2; } }
@media (max-width: 560px) {
  .gallery { columns: 1; }
  .lb-nav { width: 46px; height: 46px; font-size: 28px; }
  .shot-tag, .shot::after { opacity: 1; }
  .shot-tag { transform: none; }
}

/* ============================================================
   VIDÉOS (réalisations filmées — format 9:16)
   ============================================================ */
.video-head { text-align: center; margin: clamp(48px, 7vw, 76px) auto clamp(28px, 4vw, 40px); }
.video-head .divider { color: var(--secondary); margin-bottom: 16px; }
.video-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: 0.01em;
  color: var(--white);
}
.video-title .gold { color: var(--accent); }
.video-sub { margin-top: 12px; color: var(--muted-dark); font-size: clamp(15px, 1.8vw, 17px); }

.videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
  max-width: 880px;
  margin-inline: auto;
}
.vcard { margin: 0; }
.vplayer {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0a1a36;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  touch-action: pan-y;
}
.vplayer video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.vplay {
  position: absolute; inset: 0;
  margin: auto;
  width: 66px; height: 66px;
  display: grid; place-items: center;
  border: none;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.95);
  color: #1c1500;
  cursor: pointer;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.6);
  transition: transform .2s ease, opacity .25s ease, background .2s ease;
}
.vplay svg { width: 28px; height: 28px; margin-left: 3px; }
.vplayer::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,26,54,0) 55%, rgba(10,26,54,0.55) 100%);
  pointer-events: none;
  opacity: 1;
  transition: opacity .3s ease;
}
.vplayer:hover .vplay { transform: scale(1.08); }
.vplayer.playing .vplay { opacity: 0; pointer-events: none; }
.vplayer.playing::after { opacity: 0; }
.vmute {
  position: absolute; top: 12px; right: 12px;
  width: 38px; height: 38px;
  display: none; place-items: center;
  border-radius: 50%;
  background: rgba(13, 26, 48, 0.7);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.vmute svg { width: 18px; height: 18px; }
.vplayer.playing .vmute { display: grid; }
.vplayer.unmuted .vmute svg path:nth-child(2) { display: none; }
.vcard figcaption {
  display: flex; flex-direction: column; gap: 2px;
  padding: 14px 4px 0;
  text-align: center;
}
.vcard figcaption b { color: var(--white); font-size: 16px; font-weight: 700; }
.vcard figcaption span { color: var(--accent); font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

@media (max-width: 760px) {
  .videos { grid-template-columns: repeat(2, 1fr); max-width: 480px; }
  .videos .vcard:last-child { grid-column: 1 / -1; max-width: 230px; margin-inline: auto; }
}
@media (max-width: 440px) {
  .videos { grid-template-columns: 1fr; max-width: 300px; }
  .videos .vcard:last-child { max-width: none; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn-gold::after, .wave1, .wave2, .float-call::before, .fr-pulse, .fr-core, .fr-twinkle { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 560px; order: -1; }
  .hero { min-height: auto; padding-top: 30px; }
  .zone-block { display: flex; flex-direction: column; align-items: center; }
  .zone-map { max-width: 320px; width: 100%; aspect-ratio: auto; }
  .zone-map img { object-fit: contain; }
  .zone-block > div { width: 100%; }
  .zone-cta { justify-content: flex-start; }
}
@media (max-width: 880px) {
  .nav, .header-cta .phone-badge { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: block; }
  .contact-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .float-call { display: inline-flex; }
  .scroll-hint { display: none; }
  body { padding-bottom: 84px; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; text-align: center; }
  .hero-cta .btn { width: 100%; }
  .hero-tag { left: 50%; transform: translateX(-50%); }
}
