/* ==========================================================================
   YAMETA — Landing Page Google Ads
   Design system : noir premium + or, respirations crème, accent grenat
   Mobile-first. Aucune dépendance externe.
   ========================================================================== */

@font-face {
  font-family: "Playfair Display";
  src: url("assets/fonts/PlayfairDisplay-Variable.woff2") format("woff2-variations"),
       url("assets/fonts/PlayfairDisplay-Variable.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Variable.woff2") format("woff2-variations"),
       url("assets/fonts/Manrope-Variable.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Palette */
  --ink: #0b0906;
  --ink-2: #161209;
  --ink-3: #1f1a10;
  --gold: #c9a227;
  --gold-light: #e8c669;
  --gold-soft: rgba(201, 162, 39, 0.16);
  --gold-line: rgba(201, 162, 39, 0.28);
  --cream: #faf6ec;
  --cream-2: #f1e9d6;
  --text-light: #f4eee0;
  --text-muted: #c9bfa4;
  --text-dark: #1c1710;
  --text-dark-muted: #6b5f49;
  --wine: #7c1f2b;
  --wine-light: #a3384a;
  --whatsapp: #22c55e;
  --line-light: rgba(28, 23, 16, 0.1);

  /* Rythme */
  --radius-sm: 10px;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-soft: 0 12px 40px -16px rgba(0, 0, 0, 0.45);
  --shadow-strong: 0 30px 80px -24px rgba(0, 0, 0, 0.6);
  --container: 1180px;
  --gutter: 20px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--text-light);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}
p {
  margin: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
input, textarea, select {
  font-family: inherit;
  font-size: 16px;
}
section {
  position: relative;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Utilitaires ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}
.section-head {
  max-width: 620px;
  margin-bottom: 44px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.15;
}
.section-head p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 17px;
}
.section-head.on-light p {
  color: var(--text-dark-muted);
}
.section-head.on-light h2 {
  color: var(--text-dark);
}
.section-head.on-light .eyebrow {
  color: var(--wine);
}
.section-head.on-light .eyebrow::before {
  background: var(--wine);
}

.on-light {
  background: var(--cream);
  color: var(--text-dark);
}
.on-light .text-muted {
  color: var(--text-dark-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.03s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.11s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.27s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.35s; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--gold-line);
  background: var(--gold-soft);
  color: var(--gold-light);
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15.5px;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
  will-change: transform;
}
.btn svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}
.btn:active {
  transform: scale(0.97);
}
.btn-call {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #201705;
  box-shadow: 0 14px 30px -10px rgba(201, 162, 39, 0.55);
}
.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(201, 162, 39, 0.65);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #06210f;
  box-shadow: 0 14px 30px -10px rgba(34, 197, 94, 0.5);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(34, 197, 94, 0.6);
}
.btn-ghost {
  border: 1px solid var(--gold-line);
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
}
.btn-dark {
  background: var(--text-dark);
  color: var(--cream);
}
.btn-dark:hover {
  transform: translateY(-2px);
}
.btn-block {
  width: 100%;
}
.btn-lg {
  padding: 18px 30px;
  font-size: 16.5px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 14px 0;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-header.is-scrolled {
  background: rgba(11, 9, 6, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding: 10px 0;
  box-shadow: 0 8px 30px -18px rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(201, 162, 39, 0.14);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img {
  height: 40px;
  width: auto;
}
.main-nav {
  display: none;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-muted);
}
.main-nav a {
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s var(--ease);
}
.main-nav a:hover {
  color: var(--text-light);
}
.main-nav a:hover::after {
  right: 0;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-cta .btn {
  padding: 12px 18px;
  font-size: 14px;
}
.nav-toggle {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold-light);
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle span::before {
  position: absolute;
  top: -6px;
}
.nav-toggle span::after {
  position: absolute;
  top: 6px;
}
.nav-toggle.is-active span {
  background: transparent;
}
.nav-toggle.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle.is-active span::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 89;
  background: rgba(11, 9, 6, 0.98);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 32px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-nav ul a {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.14);
  color: var(--text-light);
}
.mobile-nav-cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 128px 0 64px;
  background:
    radial-gradient(80% 60% at 85% 0%, rgba(201, 162, 39, 0.16), transparent 60%),
    radial-gradient(60% 50% at 10% 100%, rgba(124, 31, 43, 0.18), transparent 60%),
    var(--ink);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 162, 39, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, black, transparent);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  gap: 44px;
}
.hero-copy {
  max-width: 640px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(34px, 8vw, 58px);
  line-height: 1.08;
  color: var(--text-light);
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  margin-top: 20px;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero-trust {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.stars {
  display: flex;
  gap: 3px;
  color: var(--gold-light);
}
.stars svg {
  width: 16px;
  height: 16px;
}
.hero-trust small {
  color: var(--text-muted);
  font-size: 13.5px;
}
.hero-trust strong {
  color: var(--text-light);
}

.hero-visual {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 380px;
  padding: 30px 10px 0;
}
.hero-portrait-glow {
  position: absolute;
  inset: 6% 2% 4%;
  background:
    radial-gradient(60% 55% at 50% 38%, rgba(201, 162, 39, 0.4), transparent 70%),
    radial-gradient(40% 40% at 50% 90%, rgba(124, 31, 43, 0.28), transparent 75%);
  filter: blur(28px);
  z-index: 0;
}
.hero-portrait-cutout {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 34px 40px rgba(0, 0, 0, 0.55));
}
.hero-float-card {
  position: absolute;
  z-index: 3;
  background: rgba(22, 18, 9, 0.9);
  border: 1px solid var(--gold-line);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.hero-float-card.experience {
  top: 18px;
  left: -14px;
  animation: floatY 5s ease-in-out infinite;
}
.hero-float-card.discretion {
  bottom: 22px;
  right: -18px;
  animation: floatY 5.6s ease-in-out infinite 0.4s;
}
.hero-float-card strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--gold-light);
  line-height: 1;
}
.hero-float-card span {
  color: var(--text-muted);
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Marquee */
.marquee-wrap {
  border-top: 1px solid rgba(201, 162, 39, 0.16);
  border-bottom: 1px solid rgba(201, 162, 39, 0.16);
  background: var(--ink-2);
  padding: 16px 0;
  overflow: hidden;
}
.marquee {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.marquee-item svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   CHIFFRES
   ========================================================================== */
.stats {
  padding: 56px 0;
  background: var(--ink);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: center;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 6vw, 44px);
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
  padding: 88px 0;
  background: var(--ink);
}
.services-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.service-card {
  position: relative;
  padding: 30px 26px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  border: 1px solid rgba(201, 162, 39, 0.16);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(180px 120px at 90% -10%, rgba(201, 162, 39, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-line);
  box-shadow: var(--shadow-soft);
}
.service-card:hover::before {
  opacity: 1;
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  margin-bottom: 20px;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold-light);
}
.service-card h3 {
  font-size: 21px;
  color: var(--text-light);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 18px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
}
.service-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s var(--ease);
}
.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* ==========================================================================
   GALERIE ÉDITORIALE
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px 0 40px;
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,9,6,0.85));
}
.gallery-item figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  font-size: 11.5px;
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media (max-width: 480px) {
  .gallery-item figcaption { font-size: 10px; }
}

/* ==========================================================================
   POURQUOI CHOISIR
   ========================================================================== */
.why {
  padding: 88px 0;
}
.why-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
.why-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.why-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.why-media-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(11, 9, 6, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.why-media-badge svg {
  width: 26px;
  height: 26px;
  color: var(--gold-light);
  flex-shrink: 0;
}
.why-media-badge strong {
  display: block;
  font-size: 14px;
  color: var(--text-light);
}
.why-media-badge span {
  font-size: 12.5px;
  color: var(--text-muted);
}
.why-list {
  display: grid;
  gap: 20px;
  margin-top: 12px;
}
.why-item {
  display: flex;
  gap: 16px;
}
.why-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
}
.why-item h4 {
  font-size: 16.5px;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}
.why-item p {
  font-size: 14.5px;
  color: var(--text-dark-muted);
}
.why.on-light .why-item h4 { color: var(--text-dark); }

/* ==========================================================================
   FONCTIONNEMENT / TIMELINE
   ========================================================================== */
.process {
  padding: 88px 0;
  background: var(--ink);
}
.process-grid {
  display: grid;
  gap: 40px;
}
.process-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  align-self: start;
}
.process-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.process-media-quote {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: rgba(11, 9, 6, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.process-media-quote svg {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.process-media-quote p {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.5;
}

.timeline {
  display: grid;
  gap: 0;
  counter-reset: step;
}
.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding-bottom: 40px;
}
.timeline-step:last-child {
  padding-bottom: 0;
}
.timeline-line {
  position: relative;
  display: flex;
  justify-content: center;
}
.timeline-line::before {
  content: "";
  position: absolute;
  top: 44px;
  bottom: -40px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-line), transparent);
}
.timeline-step:last-child .timeline-line::before {
  display: none;
}
.timeline-num {
  counter-increment: step;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #201705;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 10px 24px -10px rgba(201, 162, 39, 0.6);
}
.timeline-num::before {
  content: counter(step);
}
.timeline-content h4 {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  color: var(--text-light);
  margin-bottom: 6px;
}
.timeline-content p {
  color: var(--text-muted);
  font-size: 14.5px;
  max-width: 460px;
}
.availability-card {
  margin-top: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--gold-line);
  background: var(--ink-2);
  padding: 26px;
  display: grid;
  gap: 16px;
}
.availability-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14.5px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(201, 162, 39, 0.18);
}
.availability-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.availability-row span:first-child {
  color: var(--text-muted);
}
.availability-row span:last-child {
  color: var(--text-light);
  font-weight: 700;
}
.availability-live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #7fe3a3;
}
.dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.55); }
  70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ==========================================================================
   VIDEO
   ========================================================================== */
.video-section {
  padding: 88px 0;
}
.video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--gold-line);
  cursor: pointer;
}
.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s var(--ease);
}
.video-frame:hover img {
  transform: scale(1.06);
}
.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,9,6,0.15), rgba(11,9,6,0.75));
}
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.play-btn-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(250, 246, 236, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(250,246,236,.5);
  animation: playPulse 2.6s infinite;
  transition: transform 0.3s var(--ease);
}
.video-frame:hover .play-btn-circle {
  transform: scale(1.08);
}
.play-btn-circle svg {
  width: 26px;
  height: 26px;
  color: var(--ink);
  margin-left: 4px;
}
@keyframes playPulse {
  0% { box-shadow: 0 0 0 0 rgba(250,246,236,.45); }
  70% { box-shadow: 0 0 0 22px rgba(250,246,236,0); }
  100% { box-shadow: 0 0 0 0 rgba(250,246,236,0); }
}
.video-caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  right: 20px;
  z-index: 2;
  color: var(--text-light);
}
.video-caption strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 18px;
}
.video-caption span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   AVIS
   ========================================================================== */
.reviews {
  padding: 88px 0;
  background: var(--cream);
  color: var(--text-dark);
}
.reviews-score {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.reviews-score-num {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  color: var(--text-dark);
  line-height: 1;
}
.reviews-score .stars {
  color: var(--gold);
}
.reviews-score-meta {
  font-size: 13.5px;
  color: var(--text-dark-muted);
}
.reviews-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  margin: 0 calc(var(--gutter) * -1);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar {
  display: none;
}
.review-card {
  scroll-snap-align: start;
  flex: 0 0 88%;
  max-width: 340px;
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--line-light);
  box-shadow: 0 20px 44px -28px rgba(28,23,16,0.25);
}
.review-card .stars {
  color: var(--gold);
  margin-bottom: 14px;
}
.review-card p {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.65;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  font-family: "Playfair Display", serif;
}
.review-author strong {
  display: block;
  font-size: 14px;
  color: var(--text-dark);
}
.review-author span {
  font-size: 12.5px;
  color: var(--text-dark-muted);
}
.review-placeholder-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 700;
}
.reviews-cta {
  margin-top: 30px;
  text-align: center;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: 88px 0;
}
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 760px;
}
.faq-item {
  border: 1px solid rgba(201, 162, 39, 0.16);
  border-radius: var(--radius-sm);
  background: var(--ink-2);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-light);
}
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold-light);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq-icon::before {
  width: 10px;
  height: 1.4px;
}
.faq-icon::after {
  width: 1.4px;
  height: 10px;
}
.faq-item.is-open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s var(--ease);
}
.faq-answer-inner {
  padding: 0 22px 22px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ==========================================================================
   FORMULAIRE / CONTACT
   ========================================================================== */
.contact {
  padding: 88px 0;
  background:
    radial-gradient(60% 60% at 90% 10%, rgba(201, 162, 39, 0.14), transparent 60%),
    var(--ink);
}
.contact-grid {
  display: grid;
  gap: 32px;
}
.contact-info {
  display: grid;
  gap: 18px;
  align-content: start;
}
.info-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.16);
  background: var(--ink-2);
}
.info-card svg {
  width: 22px;
  height: 22px;
  color: var(--gold-light);
  flex-shrink: 0;
}
.info-card strong {
  display: block;
  font-size: 14.5px;
  color: var(--text-light);
  margin-bottom: 3px;
}
.info-card a, .info-card span {
  font-size: 14px;
  color: var(--text-muted);
}
.info-card a:hover {
  color: var(--gold-light);
}

.form-card {
  background: var(--cream);
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  box-shadow: var(--shadow-strong);
}
.form-card h3 {
  font-size: 24px;
  color: var(--text-dark);
}
.form-card > p {
  margin-top: 8px;
  color: var(--text-dark-muted);
  font-size: 14.5px;
  margin-bottom: 24px;
}
.form-grid {
  display: grid;
  gap: 16px;
}
.form-field {
  position: relative;
}
.form-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 7px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(28, 23, 16, 0.14);
  background: #fff;
  color: var(--text-dark);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form-field textarea {
  resize: vertical;
  min-height: 96px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--wine);
  box-shadow: 0 0 0 4px rgba(124, 31, 43, 0.1);
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #c0392b;
}
.form-error {
  display: none;
  font-size: 12px;
  color: #c0392b;
  margin-top: 6px;
}
.form-field.has-error .form-error {
  display: block;
}
.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  color: var(--text-dark-muted);
  line-height: 1.5;
}
.form-consent input {
  margin-top: 3px;
}
.form-status {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}
.form-status.is-visible {
  display: flex;
}
.form-status.success {
  background: rgba(34, 197, 94, 0.12);
  color: #1e7e42;
}
.form-status.error {
  background: rgba(192, 57, 43, 0.1);
  color: #c0392b;
}

/* ==========================================================================
   DERNIER CTA
   ========================================================================== */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--wine), #4c1420);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(201,162,39,0.25), transparent 70%);
}
.final-cta .container {
  position: relative;
}
.final-cta h2 {
  font-size: clamp(28px, 6vw, 40px);
  color: #fff;
  max-width: 640px;
  margin: 0 auto;
}
.final-cta p {
  margin-top: 14px;
  color: rgba(255,255,255,0.82);
  font-size: 16px;
}
.final-cta-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #060504;
  padding: 56px 0 110px;
  color: var(--text-muted);
}
.footer-grid {
  display: grid;
  gap: 32px;
}
.footer-brand img {
  height: 46px;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 13.5px;
  max-width: 320px;
  line-height: 1.7;
}
.footer-col h5 {
  color: var(--text-light);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}
.footer-col ul {
  display: grid;
  gap: 10px;
  font-size: 14px;
}
.footer-col a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12.5px;
}
.footer-legal-note {
  color: #756b56;
  line-height: 1.7;
}

/* ==========================================================================
   CALL BAR MOBILE + FLOATING WHATSAPP
   ========================================================================== */
.call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(11, 9, 6, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 162, 39, 0.22);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.call-bar .btn {
  padding: 13px 10px;
  font-size: 14px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 94;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -10px rgba(34, 197, 94, 0.6);
  animation: floatY 4.5s ease-in-out infinite;
  transition: transform 0.25s var(--ease);
}
.floating-whatsapp:hover {
  transform: scale(1.08);
}
.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  color: #06210f;
}

/* ==========================================================================
   RESPONSIVE — Tablette / Desktop
   ========================================================================== */
@media (min-width: 720px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .review-card {
    flex-basis: 46%;
  }
}

@media (min-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-media { order: 2; }
  .why-copy { order: 1; }
  .process-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }
  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
  .form-grid.two-col {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid.two-col .full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .main-nav { display: block; }
  .nav-toggle { display: none; }
  .call-bar { display: none; }
  .floating-whatsapp { bottom: 28px; }

  .hero {
    padding: 168px 0 96px;
  }
  .hero .container {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
  .hero-visual {
    justify-self: end;
    max-width: 420px;
  }
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .review-card {
    flex-basis: 32%;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .hero h1 { font-size: 60px; }
}
