/* =========================================
   STUDIO LENOIR — styles.css
   Minimalist white · Video hero · Conversion-first
   ========================================= */

:root {
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --ink: #0a0a0a;
  --ink-soft: #666;
  --ink-faint: #aaa;
  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.2);
  --accent: #0a0a0a;
  --max-w: 1440px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}

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

/* =========================================
   Cursor custom (desktop only)
   ========================================= */
.cursor, .cursor-follow {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transition: transform 0.1s var(--ease);
  will-change: transform;
}

.cursor {
  width: 6px; height: 6px;
  background: var(--ink);
  top: 0; left: 0;
  mix-blend-mode: difference;
}

.cursor-follow {
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  top: 0; left: 0;
  transition: transform 0.25s var(--ease), width 0.2s, height 0.2s, border-color 0.2s;
  mix-blend-mode: difference;
}

.cursor-follow.hover {
  width: 60px; height: 60px;
  border-color: #ff4040;
}

@media (max-width: 900px) { .cursor, .cursor-follow { display: none; } }

/* =========================================
   Loader obturateur
   ========================================= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
}

.loader-blade {
  position: absolute;
  left: 0; right: 0;
  height: 50vh;
  background: var(--ink);
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.loader-blade-top { top: 0; transform: translateY(0); }
.loader-blade-bottom { bottom: 0; transform: translateY(0); }

.loader.done .loader-blade-top { transform: translateY(-100%); }
.loader.done .loader-blade-bottom { transform: translateY(100%); }

/* =========================================
   NAV
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem var(--pad);
  background: rgba(255,255,255,0);
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), backdrop-filter 0.3s;
  color: #fff;
  mix-blend-mode: difference;
}

.nav.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--ink);
  mix-blend-mode: normal;
  border-bottom: 0.5px solid var(--border);
  padding: 0.75rem var(--pad);
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 5px;
  color: inherit;
}

.logo em {
  font-style: italic;
  font-weight: 400;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  transition: opacity 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid currentColor;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.pulse-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.nav-burger { display: none; background: none; border: none; width: 30px; height: 30px; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; }
.nav-burger span { display: block; height: 1px; width: 100%; background: currentColor; transition: transform 0.3s; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--ink);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Fallback animated gradient si la vidéo ne charge pas */
.hero-video-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(200,200,200,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(150,150,150,0.1) 0%, transparent 50%),
    linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1f1f1f 100%);
  animation: heroShift 12s ease-in-out infinite alternate;
}

@keyframes heroShift {
  0% { transform: scale(1.05) translate(-2%, -1%); }
  100% { transform: scale(1.12) translate(2%, 1%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 30%, rgba(0,0,0,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 var(--pad);
  color: #fff;
}

.hero-meta {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff4040;
  animation: pulse 1.5s ease-in-out infinite;
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: 0.9;
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
}

.hero-sub {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--ink);
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  font-family: inherit;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-primary-inverse {
  background: var(--ink);
  color: #fff;
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  transition: border-color 0.3s, background 0.3s;
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

.btn-full { width: 100%; justify-content: center; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 11px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.trust-item strong {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
}

.trust-item strong span {
  font-size: 14px;
  color: #ffca28;
  margin-left: 2px;
}

.trust-item span { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); }

.trust-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.2); }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  animation: scrollBob 2s ease-in-out infinite;
}

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* =========================================
   MARQUEE
   ========================================= */
.marquee {
  background: var(--ink);
  color: #fff;
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
}

.marquee-track span { padding: 0 1rem; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================
   INSTAGRAM STRIP
   ========================================= */
.insta {
  padding: 5rem var(--pad) 3rem;
  background: var(--bg);
}

.insta-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}

.section-title em { font-style: italic; }

.insta-follow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  transition: background 0.3s, color 0.3s;
}

.insta-follow:hover {
  background: var(--ink);
  color: var(--bg);
}

.insta-scroll {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.insta-story {
  aspect-ratio: 9 / 16;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: var(--ink);
  cursor: pointer;
  transition: transform 0.4s var(--ease);
}

.insta-story:hover { transform: translateY(-4px); }

.insta-story img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.insta-story:hover img { transform: scale(1.05); }

.insta-story.skeleton {
  background: linear-gradient(90deg, #eee 0%, #f5f5f5 50%, #eee 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 900px) {
  .insta-scroll { grid-template-columns: repeat(3, 1fr); }
  .insta-head { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* =========================================
   PRESTATIONS
   ========================================= */
.prestations {
  padding: 6rem var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--ink);
}

.section-intro {
  font-size: 13px;
  color: var(--ink-soft);
  max-width: 280px;
  line-height: 1.7;
}

.presta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 0.5px solid var(--border);
  border-left: 0.5px solid var(--border);
}

.presta {
  border-right: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 2rem 1.5rem;
  min-height: 340px;
  cursor: pointer;
  position: relative;
  background: var(--bg);
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
}

.presta:hover {
  background: var(--ink);
  color: var(--bg);
}

.presta-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  margin-bottom: 2rem;
  color: var(--ink-faint);
}

.presta:hover .presta-num { color: rgba(255,255,255,0.5); }

.presta-name {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.presta-desc {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: auto;
}

.presta:hover .presta-desc { color: rgba(255,255,255,0.6); }

.presta-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 0.5px solid var(--border);
}

.presta:hover .presta-footer { border-top-color: rgba(255,255,255,0.2); }

.presta-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.presta-price span {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.presta:hover .presta-price span { color: rgba(255,255,255,0.5); }

.presta-price strong {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 400;
}

.presta-cta {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.presta-cta .arrow {
  transition: transform 0.3s var(--ease);
}

.presta:hover .presta-cta { opacity: 1; }
.presta:hover .presta-cta .arrow { transform: translateX(4px); }

.presta-hover-label {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  opacity: 0;
  transition: opacity 0.3s;
}

.presta:hover .presta-hover-label { opacity: 1; }

@media (max-width: 900px) {
  .presta-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .presta-grid { grid-template-columns: 1fr; }
}

/* Bonus card */
.presta-bonus {
  margin-top: 3rem;
}

.bonus-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  background: var(--ink);
  color: var(--bg);
  padding: 2rem 2.5rem;
  border-radius: 16px;
}

.bonus-badge {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #ffca28;
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 100px;
  font-weight: 500;
}

.bonus-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 4px;
}

.bonus-content p { font-size: 13px; color: rgba(255,255,255,0.6); }

.bonus-cta {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 18px;
  border-radius: 100px;
  transition: background 0.3s;
  white-space: nowrap;
}

.bonus-cta:hover { background: rgba(255,255,255,0.1); }

@media (max-width: 700px) {
  .bonus-card { grid-template-columns: 1fr; text-align: center; }
}

/* =========================================
   WHY
   ========================================= */
.why {
  padding: 6rem var(--pad);
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.why-item { padding-right: 1rem; }

.why-num {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  font-family: 'Fraunces', serif;
  font-style: italic;
}

.why-item h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.why-item p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }

@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* =========================================
   REVIEWS
   ========================================= */
.reviews {
  padding: 6rem 0 6rem;
  overflow: hidden;
}

.reviews .section-label, .reviews .section-title {
  padding: 0 var(--pad);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.reviews .section-title { margin-bottom: 3rem; }

.reviews-scroller {
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  animation: marquee 60s linear infinite;
  width: max-content;
}

.review {
  flex-shrink: 0;
  width: 340px;
  padding: 2rem;
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: 16px;
}

.stars {
  color: #ffca28;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review p {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--ink);
}

.review cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* =========================================
   FAQ
   ========================================= */
.faq {
  padding: 6rem var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
}

.faq .section-head-row { margin-bottom: 2rem; }

.faq-list { border-top: 0.5px solid var(--border); }

.faq-item {
  border-bottom: 0.5px solid var(--border);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 0;
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 400;
  cursor: pointer;
  list-style: none;
  transition: padding 0.3s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-plus {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s var(--ease);
  color: var(--ink-soft);
}

.faq-item[open] .faq-plus { transform: rotate(45deg); }

.faq-item[open] summary { padding-bottom: 1rem; }

.faq-body {
  padding: 0 0 1.75rem 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 700px;
}

/* =========================================
   FINAL CTA
   ========================================= */
.final-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 8rem var(--pad);
  text-align: center;
}

.final-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.final-cta .section-label {
  color: rgba(255,255,255,0.5);
  justify-content: center;
}

.final-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.95;
  font-weight: 300;
  margin: 1rem 0;
  letter-spacing: -0.02em;
}

.final-title em { font-style: italic; }

.final-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--bg);
  color: var(--ink);
  padding: 4rem var(--pad) 2rem;
  border-top: 0.5px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto 3rem;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 5px;
  margin-bottom: 1rem;
}

.footer-logo em { font-style: italic; font-weight: 400; }

.footer-col p { font-size: 13px; color: var(--ink-soft); max-width: 260px; line-height: 1.7; }

.footer-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 13px;
  line-height: 2;
  color: var(--ink);
  transition: opacity 0.2s;
}

.footer-col a:hover { opacity: 0.6; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 0.5px solid var(--border);
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--ink-soft);
}

.footer-legal { display: flex; gap: 1.5rem; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
}

/* =========================================
   WHATSAPP FLOATING
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.4;
  animation: wppPulse 2s ease-in-out infinite;
}

@keyframes wppPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.2); opacity: 0; }
}

/* =========================================
   MODAL
   ========================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

.modal.open { pointer-events: auto; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s;
}

.modal.open .modal-backdrop { opacity: 1; }

.modal-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 520px;
  background: var(--bg);
  padding: 3rem 2.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}

.modal.open .modal-panel { transform: translateX(0); }

.modal-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: transparent;
  border: none;
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
  width: 40px; height: 40px;
  border-radius: 50%;
  transition: background 0.2s;
  font-family: inherit;
}

.modal-close:hover { background: var(--bg-soft); }

.modal-steps {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid var(--border);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.step { transition: color 0.3s; }
.step.active { color: var(--ink); font-weight: 500; }
.step.done { color: var(--ink-soft); }

.modal-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.modal-title {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.modal-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 1.5rem 0;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 2rem;
}

.modal-price span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.modal-price strong {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 400;
}

.modal-includes {
  list-style: none;
  margin-bottom: 2rem;
}

.modal-includes li {
  padding: 0.75rem 0;
  font-size: 14px;
  border-bottom: 0.5px solid var(--border);
}

.modal-includes li:last-child { border-bottom: none; }

.modal-step-content.hidden { display: none; }

/* Calendar */
.calendar {
  margin: 1.5rem 0;
}

.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cal-month {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cal-nav {
  background: transparent;
  border: 0.5px solid var(--border);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  color: var(--ink);
  transition: background 0.2s;
  font-family: inherit;
}

.cal-nav:hover { background: var(--bg-soft); }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--ink-faint);
  text-align: center;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  position: relative;
}

.cal-day.has-slots { font-weight: 500; }
.cal-day.has-slots::after {
  content: '';
  position: absolute;
  bottom: 5px;
  width: 3px; height: 3px;
  background: #4ade80;
  border-radius: 50%;
}
.cal-day.disabled { color: var(--ink-faint); cursor: default; }
.cal-day.selected { background: var(--ink); color: var(--bg); }
.cal-day:not(.disabled):not(.selected):hover { background: var(--bg-soft); }

.slots-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.slots-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 2rem;
  min-height: 50px;
}

.slot {
  padding: 12px;
  border: 0.5px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--bg);
}

.slot:hover:not(.selected) { border-color: var(--ink); }
.slot.selected { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.slot-placeholder { grid-column: 1 / -1; text-align: center; padding: 1rem; font-size: 12px; color: var(--ink-faint); }

/* Recap & payment */
.recap {
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.recap-line {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 13px;
}

.recap-line.total {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 0.5px solid var(--border);
  font-size: 14px;
}

.recap-line strong { font-weight: 500; }

.payment-form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 1rem; }

.payment-form input {
  padding: 14px 16px;
  border: 0.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: var(--bg);
  transition: border-color 0.2s;
}

.payment-form input:focus {
  outline: none;
  border-color: var(--ink);
}

.btn-lock { font-size: 12px; }

.payment-note {
  font-size: 11px;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .modal-panel { padding: 2rem 1.25rem; }
  .modal-title { font-size: 1.5rem; }
  .slots-list { grid-template-columns: repeat(2, 1fr); }
  .whatsapp-float { bottom: 16px; right: 16px; }
}

/* =========================================
   LOCATION STUDIOS
   ========================================= */
.studios {
  padding: 6rem var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 0.5px solid var(--border);
}

.studios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.studio-card {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 340px;
  position: relative;
  overflow: hidden;
}

.studio-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.studio-card.featured {
  background: var(--ink);
  color: var(--bg);
}

.studio-card.featured:hover {
  border-color: var(--ink);
}

.studio-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-faint);
  margin-bottom: 1.5rem;
}

.studio-card.featured .studio-num { color: rgba(255,255,255,0.5); }

.studio-name {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.studio-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.studio-card.featured .studio-tag { color: rgba(255,255,255,0.6); }

.studio-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: auto;
}

.studio-card.featured .studio-desc { color: rgba(255,255,255,0.7); }

.studio-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 1.5rem 0;
}

.studio-spec {
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--bg-soft);
  color: var(--ink-soft);
  border: 0.5px solid var(--border);
  letter-spacing: 0.5px;
}

.studio-card.featured .studio-spec {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.15);
}

.studio-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 1.25rem;
  border-top: 0.5px solid var(--border);
  margin-top: 1rem;
}

.studio-card.featured .studio-footer { border-top-color: rgba(255,255,255,0.15); }

.studio-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.studio-price-unit {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.studio-card.featured .studio-price-unit { color: rgba(255,255,255,0.5); }

.studio-price strong {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 400;
}

.studio-price strong span {
  font-size: 12px;
  color: var(--ink-soft);
  margin-left: 4px;
}

.studio-card.featured .studio-price strong span { color: rgba(255,255,255,0.5); }

.studio-cta {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.3s var(--ease);
}

.studio-card:hover .studio-cta { transform: translateX(4px); }

.studios-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  border-top: 0.5px solid var(--border);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
}

.info-icon {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  color: var(--ink-soft);
}

.info-item strong {
  display: block;
  font-weight: 500;
  margin-bottom: 2px;
}

.info-item span {
  color: var(--ink-soft);
  font-size: 12px;
}

@media (max-width: 900px) {
  .studios-grid { grid-template-columns: 1fr; gap: 1rem; }
  .studios-info { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* Studio modal — durée en heures */
.duration-selector {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  border: 0.5px solid var(--border);
}

.duration-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.duration-stepper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.duration-title { font-size: 15px; font-weight: 500; }
.duration-sub { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }

/* Studio modal — détails matériel & confort */
.studio-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.details-block {
  background: var(--bg-soft);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.details-title {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.details-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.details-list li {
  font-size: 12px;
  color: var(--ink);
  padding: 3px 0;
  line-height: 1.5;
  position: relative;
  padding-left: 12px;
}

.details-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--ink-soft);
}

@media (max-width: 520px) {
  .studio-details { grid-template-columns: 1fr; }
}

/* =========================================
   ANIMATIONS SCROLL REVEAL
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   PROMO BANNER
   ========================================= */
.promo-banner {
  background: linear-gradient(90deg, #0a0a0a, #1f1f1f);
  color: #fff;
  padding: 14px 20px;
  border-radius: 100px;
  margin: 0 auto 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 1px;
  max-width: fit-content;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.promo-banner strong {
  color: #ffca28;
  font-weight: 500;
}

.promo-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff4040;
  animation: pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

/* =========================================
   PRESTATION DYNAMIQUE — DÉTAILS
   ========================================= */
.presta-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 0.75rem;
}

.presta-spec {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 100px;
  background: var(--bg-soft);
  color: var(--ink-soft);
  letter-spacing: 0.5px;
  border: 0.5px solid var(--border);
}

.presta:hover .presta-spec {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
}

.presta-price-old {
  font-size: 13px;
  color: var(--ink-faint);
  text-decoration: line-through;
  margin-right: 6px;
  font-family: 'Fraunces', serif;
}

.presta:hover .presta-price-old { color: rgba(255,255,255,0.4); }

.presta-discount-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: #ffca28;
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 100px;
  z-index: 2;
}

/* =========================================
   MODAL — PRICE WITH DISCOUNT
   ========================================= */
.price-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-old {
  font-size: 1.2rem !important;
  color: var(--ink-faint) !important;
  text-decoration: line-through;
  font-weight: 400 !important;
}

.price-old.hidden { display: none; }

.price-discount {
  background: rgba(255,202,40,0.12);
  border: 0.5px solid rgba(255,202,40,0.3);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 12px;
  margin-bottom: 1.5rem;
  color: #8c6d00;
}

.price-discount.hidden { display: none; }

.price-discount strong { font-family: 'Fraunces', serif; font-weight: 500; }

/* =========================================
   CUSTOM CONFIG (sur-mesure)
   ========================================= */
.custom-config {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  border: 0.5px solid var(--border);
}

.custom-config.hidden { display: none; }

.config-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.config-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 0.5px solid var(--border);
}

.config-row:last-child { border-bottom: none; }

.config-item-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}

.config-item-sub {
  font-size: 11px;
  color: var(--ink-soft);
}

.config-stepper {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  padding: 4px;
  border-radius: 100px;
  border: 0.5px solid var(--border);
}

.config-stepper button {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink);
  transition: background 0.2s;
  font-family: inherit;
}

.config-stepper button:hover { background: var(--bg-soft); }
.config-stepper button:disabled { opacity: 0.3; cursor: not-allowed; }

.config-stepper span {
  min-width: 20px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

/* =========================================
   PATH CHOICE (2 parcours d'achat)
   ========================================= */
.path-choice {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.path-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}

.path-btn {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-align: left;
  font-family: inherit;
  color: var(--ink);
  display: block;
  width: 100%;
}

.path-btn:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.path-full:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.path-full:hover .path-sub,
.path-full:hover .path-detail { color: rgba(255,255,255,0.7); }

.path-full:hover .path-tag {
  background: rgba(255,202,40,0.2);
  color: #ffca28;
}

.path-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.path-title {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 4px;
}

.path-sub {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.path-arrow {
  font-size: 1.5rem;
  transition: transform 0.3s var(--ease);
  color: var(--ink-soft);
}

.path-btn:hover .path-arrow {
  transform: translateX(4px);
  color: inherit;
}

.path-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 0.5px solid var(--border);
  font-size: 11px;
}

.path-full:hover .path-bottom { border-top-color: rgba(255,255,255,0.15); }

.path-tag {
  font-size: 10px;
  letter-spacing: 1.5px;
  padding: 3px 8px;
  border-radius: 100px;
  background: var(--bg-soft);
  color: var(--ink);
  font-weight: 500;
}

.path-tag.tag-gold {
  background: rgba(255,202,40,0.15);
  color: #8c6d00;
}

.path-detail { color: var(--ink-soft); font-size: 11px; }
.path-detail strong { color: var(--ink); font-family: 'Fraunces', serif; font-weight: 500; }

.path-full:hover .path-detail strong { color: #fff; }

/* =========================================
   STEP BACK BUTTON
   ========================================= */
.step-back {
  background: transparent;
  border: none;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 1rem;
  padding: 6px 0;
  font-family: inherit;
  transition: color 0.2s;
}

.step-back:hover { color: var(--ink); }

/* =========================================
   PAYMENT CONSENT
   ========================================= */
.payment-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.5;
  padding: 0.5rem 0;
  cursor: pointer;
}

.payment-consent input {
  margin-top: 2px;
  accent-color: var(--ink);
}

.payment-consent a {
  color: var(--ink);
  text-decoration: underline;
}

/* =========================================
   CONFIRMATION ÉCRAN
   ========================================= */
.confirmation-icon {
  display: flex;
  justify-content: center;
  margin: 1rem 0 1.5rem;
  color: var(--ink);
}

.confirmation-title {
  text-align: center;
  font-size: 1.75rem !important;
  margin-bottom: 2rem !important;
}

.confirmation-code {
  background: var(--bg-soft);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.code-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.code-value {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  letter-spacing: 3px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
  user-select: all;
}

.code-qr {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.code-qr img {
  width: 140px;
  height: 140px;
  border-radius: 8px;
}

.confirmation-text {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.confirmation-text strong { color: var(--ink); }

.confirmation-contact {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 0.5px solid var(--border);
  font-size: 12px;
  color: var(--ink-soft);
}

.confirmation-contact a {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-weight: 500;
}

/* =========================================
   STICKY CTA MOBILE (bottom)
   ========================================= */
@media (max-width: 700px) {
  .path-top { flex-direction: column; gap: 8px; }
  .path-arrow { align-self: flex-end; }
  .confirmation-code .code-value { font-size: 1.5rem; letter-spacing: 2px; }
}
