/* ═══════════════════════════════════════
   CSS VARIABLES — C CARRÉ DESIGN SYSTEM
   ═══════════════════════════════════════ */
:root {
  --gold: #C5A55A;
  --gold-light: #D4BA7A;
  --gold-dim: rgba(197,165,90,0.15);
  --gold-glow: rgba(197,165,90,0.08);
  --dark-1: #0B0B0F;
  --dark-2: #111118;
  --dark-3: #1A1A24;
  --dark-4: #22222E;
  --dark-card: #16161F;
  --text-primary: #F2F0EB;
  --text-secondary: #A8A5A0;
  --text-muted: #6B6860;
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', -apple-system, sans-serif;
  --transition: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  background: var(--dark-1);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-1); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: var(--sans); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300; line-height: 1.15; color: var(--text-primary); margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }

/* ═══════════════════
   NAVIGATION
   ═══════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: all 0.5s var(--transition);
}
.nav.scrolled {
  background: rgba(11,11,15,0.92); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); padding: 12px 0;
  border-bottom: 1px solid rgba(197,165,90,0.1);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img {
  height: 32px;
  width: auto;
}
.nav-logo-icon {
  width: 38px; height: 38px; border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--text-primary);
}
.nav-logo-text {
  font-family: var(--sans); font-size: 1.15rem; font-weight: 500;
  letter-spacing: 0.08em; color: var(--text-primary);
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--sans); font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-secondary);
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.4s var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--dark-1) !important; background: var(--gold);
  padding: 10px 24px; transition: all 0.3s var(--transition);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 24px; height: 1.5px; background: var(--text-primary); transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; inset: 0; background: rgba(11,11,15,0.98);
  backdrop-filter: blur(30px); z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--text-primary); transition: color 0.3s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 24px; right: 24px; font-size: 2rem; color: var(--text-primary); cursor: pointer; background: none; border: none; }
@media (max-width: 768px) { .nav-links { display: none; } .nav-hamburger { display: flex; } }

/* ═══════════════════
   HERO
   ═══════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--dark-1) 0%, var(--dark-3) 50%, var(--dark-2) 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(197,165,90,0.06) 0%, transparent 70%);
}
.hero-overlay { position: absolute; inset: 0; background: rgba(11,11,15,0.55); z-index: 1; }
.hero-placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 0.85rem; color: var(--text-muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px dashed var(--text-muted); margin: 40px; opacity: 0.3;
}
.hero-content { position: relative; z-index: 2; padding: 0 24px; max-width: 820px; }
.hero-eyebrow {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px; opacity: 0; animation: fadeUp 1s 0.3s var(--transition) forwards;
}
.hero-title {
  font-family: var(--serif); font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300; line-height: 1.05; color: var(--white);
  margin-bottom: 24px; opacity: 0; animation: fadeUp 1s 0.5s var(--transition) forwards;
}
.hero-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-subtitle {
  font-family: var(--sans); font-size: 1.05rem; font-weight: 300;
  color: var(--text-secondary); margin-bottom: 48px; max-width: 500px;
  margin-left: auto; margin-right: auto; opacity: 0; animation: fadeUp 1s 0.7s var(--transition) forwards;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s 0.9s var(--transition) forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark-1);
  background: var(--gold); padding: 16px 36px; border: none; cursor: pointer;
  transition: all 0.4s var(--transition);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(197,165,90,0.25); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-primary);
  background: transparent; padding: 16px 36px; border: 1px solid rgba(242,240,235,0.2);
  cursor: pointer; transition: all 0.4s var(--transition);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; opacity: 0; animation: fadeUp 1s 1.2s var(--transition) forwards;
}
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent); margin: 0 auto; animation: scrollPulse 2s ease-in-out infinite; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ═══════════════════
   STATS COUNTER BAR — GAME CHANGER #1
   ═══════════════════ */
.stats-bar {
  padding: 48px 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(197,165,90,0.06);
  border-bottom: 1px solid rgba(197,165,90,0.06);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300; color: var(--gold); line-height: 1;
}
.stat-label {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 400;
  color: var(--text-secondary); margin-top: 8px; letter-spacing: 0.04em;
}
@media (max-width: 600px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

/* ═══════════════════
   VIDEO
   ═══════════════════ */
.video-section { padding: 100px 0; background: var(--dark-1); position: relative; }
.video-wrapper { max-width: 900px; margin: 0 auto; text-align: center; }
.video-embed {
  position: relative; width: 100%; padding-bottom: 56.25%;
  background: var(--dark-3); border: 1px solid rgba(197,165,90,0.15);
  overflow: hidden; margin-top: 40px;
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px; color: var(--text-muted);
}
.play-btn {
  width: 72px; height: 72px; border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.4s;
}
.play-btn:hover { background: var(--gold); transform: scale(1.05); }
.play-btn::after { content: ''; width: 0; height: 0; border-left: 18px solid var(--gold); border-top: 11px solid transparent; border-bottom: 11px solid transparent; margin-left: 4px; }
.play-btn:hover::after { border-left-color: var(--dark-1); }

/* ═══════════════════
   PROMESSE
   ═══════════════════ */
.promesse { padding: 120px 0; background: var(--dark-2); position: relative; }
.promesse-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.promesse-card {
  background: var(--dark-card); border: 1px solid rgba(197,165,90,0.08);
  padding: 48px 36px; transition: all 0.5s var(--transition); position: relative; overflow: hidden;
}
.promesse-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.5s var(--transition);
}
.promesse-card:hover::before { transform: scaleX(1); }
.promesse-card:hover { border-color: rgba(197,165,90,0.2); transform: translateY(-4px); }
.promesse-number { font-family: var(--serif); font-size: 3.5rem; font-weight: 300; color: rgba(197,165,90,0.12); line-height: 1; margin-bottom: 20px; }
.promesse-card h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--gold); margin-bottom: 16px; }
.promesse-card p { font-family: var(--sans); font-size: 0.92rem; font-weight: 300; color: var(--text-secondary); line-height: 1.7; }
@media (max-width: 768px) { .promesse-grid { grid-template-columns: 1fr; gap: 20px; } }



/* ═══════════════════
   AVIS — INFINITE MARQUEE CAROUSEL
   ═══════════════════ */
.avis { padding: 100px 0 120px; background: var(--dark-1); position: relative; overflow: hidden; }
.avis-header { text-align: center; margin-bottom: 60px; }
.marquee-container { overflow: hidden; position: relative; padding: 8px 0; }
.marquee-container::before,
.marquee-container::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.marquee-container::before { left: 0; background: linear-gradient(90deg, var(--dark-1), transparent); }
.marquee-container::after { right: 0; background: linear-gradient(270deg, var(--dark-1), transparent); }
.marquee-track {
  display: flex; gap: 20px; width: max-content;
}
.marquee-track.row-1 { animation: marqueeLeft 45s linear infinite; }
.marquee-track.row-2 { animation: marqueeRight 50s linear infinite; margin-top: 20px; }
.marquee-track:hover { animation-play-state: paused; }

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

.avis-card {
  flex-shrink: 0; width: 420px; background: var(--dark-card);
  border: 1px solid rgba(197,165,90,0.06); padding: 32px;
  transition: border-color 0.3s;
}
.avis-card:hover { border-color: rgba(197,165,90,0.2); }
.avis-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 3px; margin-bottom: 16px; }
.avis-text {
  font-family: var(--serif); font-size: 1rem; font-weight: 300;
  font-style: italic; color: var(--text-primary); line-height: 1.65; margin-bottom: 20px;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.avis-author { display: flex; align-items: center; gap: 12px; }
.avis-avatar {
  width: 36px; height: 36px; background: var(--gold-dim); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 0.9rem; color: var(--gold);
}
.avis-author-info h4 { font-family: var(--sans); font-size: 0.85rem; font-weight: 500; color: var(--text-primary); }
.avis-author-info span { font-family: var(--sans); font-size: 0.72rem; color: var(--text-muted); }

@media (max-width: 600px) { .avis-card { width: 310px; padding: 24px; } }

/* ═══════════════════
   GALERIE
   ═══════════════════ */
.galerie { padding: 120px 0; background: var(--dark-2); }
.galerie-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 420px;
  gap: 18px;
  margin-top: 60px;
}
.galerie-item {
  position: relative;
  overflow: hidden;
  background: var(--dark-3);
  cursor: pointer;
}
.galerie-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.9s var(--transition);
}
.galerie-item:hover img { transform: scale(1.06); }
.galerie-item .galerie-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(11,11,15,0.85) 0%,
    rgba(11,11,15,0.35) 35%,
    transparent 65%);
  transition: opacity 0.5s var(--transition);
  z-index: 1;
}
.galerie-item:hover .galerie-overlay {
  background: linear-gradient(to top,
    rgba(11,11,15,0.9) 0%,
    rgba(197,165,90,0.12) 50%,
    transparent 80%);
}
.galerie-item .galerie-caption {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--white);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.4s var(--transition);
}
.galerie-item .galerie-caption::after {
  content: '→';
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.6;
  transition: all 0.4s var(--transition);
}
.galerie-item:hover .galerie-caption {
  color: var(--gold);
}
.galerie-item:hover .galerie-caption::after {
  opacity: 1;
  transform: translateX(6px);
}
.galerie-item .galerie-label {
  position: absolute;
  top: 24px; left: 28px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 2;
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.5s var(--transition);
}
.galerie-item:hover .galerie-label {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .galerie-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 360px; }
}
@media (max-width: 600px) {
  .galerie-mosaic { grid-template-columns: 1fr; grid-auto-rows: 320px; gap: 14px; }
}

/* ═══════════════════
   "CE QUE NOS COUPLES ADORENT" — Replaces price grid
   ═══════════════════ */
.adorent { padding: 120px 0; background: var(--dark-1); }
.adorent-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  margin-top: 60px; align-items: center;
}
.adorent-list { display: flex; flex-direction: column; gap: 28px; }
.adorent-item { display: flex; gap: 20px; align-items: flex-start; }
.adorent-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border: 1.5px solid rgba(197,165,90,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold); transition: all 0.3s;
}
.adorent-item:hover .adorent-icon { background: var(--gold-dim); border-color: var(--gold); }
.adorent-item h4 {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 400;
  color: var(--text-primary); margin-bottom: 4px;
}
.adorent-item p { font-family: var(--sans); font-size: 0.88rem; font-weight: 300; color: var(--text-secondary); line-height: 1.6; }
.adorent-visual {
  background: var(--dark-card); border: 1px solid rgba(197,165,90,0.08);
  padding: 48px 40px; text-align: center; position: relative;
}
.adorent-visual::before {
  content: ''; position: absolute; top: -1px; left: 40px; right: 40px;
  height: 2px; background: var(--gold);
}
.adorent-visual-label {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.adorent-visual-price {
  font-family: var(--serif); font-size: 3.5rem; font-weight: 300; color: var(--text-primary); line-height: 1;
}
.adorent-visual-detail {
  font-family: var(--sans); font-size: 0.88rem; color: var(--text-secondary);
  margin-top: 8px; margin-bottom: 32px;
}
.adorent-visual-perks { display: flex; flex-direction: column; gap: 12px; text-align: left; margin-bottom: 36px; }
.adorent-visual-perks span {
  font-family: var(--sans); font-size: 0.85rem; color: var(--text-secondary);
  padding-left: 20px; position: relative;
}
.adorent-visual-perks span::before { content: '✓'; position: absolute; left: 0; color: var(--gold); }

@media (max-width: 768px) {
  .adorent-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══════════════════
   CALCULATEUR CTA
   ═══════════════════ */
.calculateur-cta { padding: 100px 0; background: var(--dark-2); position: relative; overflow: hidden; }
.calculateur-cta::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px; background: radial-gradient(circle, rgba(197,165,90,0.06) 0%, transparent 70%); pointer-events: none;
}
.calc-inner { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.calc-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(197,165,90,0.1); border: 1px solid rgba(197,165,90,0.25);
  padding: 8px 20px; font-family: var(--sans); font-size: 0.78rem; font-weight: 500;
  color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 32px;
}
.calc-title { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 300; color: var(--white); margin-bottom: 20px; line-height: 1.2; }
.calc-title em { color: var(--gold); font-style: italic; }
.calc-desc { font-family: var(--sans); font-size: 1rem; font-weight: 300; color: var(--text-secondary); max-width: 550px; margin: 0 auto 20px; line-height: 1.7; }
.calc-perks { display: flex; justify-content: center; gap: 40px; margin: 36px 0 44px; flex-wrap: wrap; }
.calc-perk { display: flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 0.9rem; color: var(--text-primary); }
.calc-perk-icon {
  width: 28px; height: 28px; border: 1.5px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--gold); flex-shrink: 0;
}

/* ═══════════════════
   TIMELINE — GAME CHANGER #2
   ═══════════════════ */
.timeline { padding: 120px 0; background: var(--dark-1); }
.timeline-track { max-width: 700px; margin: 60px auto 0; position: relative; }
.timeline-track::before {
  content: ''; position: absolute; left: 24px; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, var(--gold), rgba(197,165,90,0.1));
}
.timeline-item { display: flex; gap: 32px; margin-bottom: 40px; position: relative; }
.timeline-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--gold);
  flex-shrink: 0; margin-top: 6px; position: relative; left: 20px;
  box-shadow: 0 0 12px rgba(197,165,90,0.3);
}
.timeline-content { padding-left: 8px; }
.timeline-step {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.timeline-content h4 { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--text-primary); margin-bottom: 6px; }
.timeline-content p { font-family: var(--sans); font-size: 0.88rem; font-weight: 300; color: var(--text-secondary); line-height: 1.6; }

/* ═══════════════════
   FAQ
   ═══════════════════ */
.faq { padding: 120px 0; background: var(--dark-2); }
.faq-list { max-width: 720px; margin: 60px auto 0; }
.faq-item { border-bottom: 1px solid rgba(197,165,90,0.08); }
.faq-question {
  width: 100%; background: none; border: none; padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
  font-family: var(--serif); font-size: 1.15rem; font-weight: 400;
  color: var(--text-primary); text-align: left; transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon { font-family: var(--sans); font-size: 1.2rem; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--transition); }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { font-family: var(--sans); font-size: 0.9rem; font-weight: 300; color: var(--text-secondary); line-height: 1.7; padding-bottom: 24px; }

/* ═══════════════════
   CONTACT
   ═══════════════════ */
.contact { padding: 120px 0 80px; background: var(--dark-1); text-align: center; position: relative; }
.contact::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(197,165,90,0.15), transparent); }
.contact-info { display: flex; justify-content: center; gap: 48px; margin-top: 40px; flex-wrap: wrap; }
.contact-item {}
.contact-item .label { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.contact-item .value { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; color: var(--text-primary); }
.contact-item .value a { transition: color 0.3s; }
.contact-item .value a:hover { color: var(--gold); }
.footer { padding: 40px 0; background: var(--dark-1); text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; }
.footer-links a { font-family: var(--sans); font-size: 0.78rem; color: var(--text-muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer p { font-family: var(--sans); font-size: 0.78rem; color: var(--text-muted); }

/* ═══════════════════
   WHATSAPP FLOATING BUTTON — GAME CHANGER #3
   ═══════════════════ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s var(--transition); cursor: pointer;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
.whatsapp-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--white); color: var(--dark-1); padding: 8px 16px;
  border-radius: 8px; font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ═══════════════════════════════
   GALLERY PAGE STYLES
   ═══════════════════════════════ */

.gallery-hero {
  padding: 160px 0 80px;
  background: var(--dark-1);
  text-align: center;
  position: relative;
}
.gallery-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197,165,90,0.1), transparent);
}
.gallery-hero-title {
  font-family: var(--serif); font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300; color: var(--white); margin-bottom: 16px;
}
.gallery-hero-title em { font-style: italic; color: var(--gold); }
.gallery-hero-desc {
  font-family: var(--sans); font-size: 1rem; font-weight: 300;
  color: var(--text-secondary); max-width: 550px; margin: 0 auto; line-height: 1.7;
}

.gallery-nav {
  padding: 24px 0; background: var(--dark-2);
  border-bottom: 1px solid rgba(197,165,90,0.06);
  position: sticky; top: 58px; z-index: 50;
}
.gallery-nav-links {
  display: flex; justify-content: center; gap: 8px;
  list-style: none; flex-wrap: wrap;
}
.gallery-nav-links a {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-secondary); padding: 10px 20px;
  border: 1px solid transparent; transition: all 0.3s var(--transition);
}
.gallery-nav-links a:hover { color: var(--gold); border-color: rgba(197,165,90,0.2); }
.gallery-nav-links a.active { color: var(--gold); border-color: var(--gold); }

.gallery-grid { padding: 60px 0 120px; background: var(--dark-1); }
.masonry { columns: 3; column-gap: 12px; }
.masonry-item {
  break-inside: avoid; margin-bottom: 12px;
  position: relative; overflow: hidden; cursor: pointer;
}
.masonry-item img {
  width: 100%; display: block;
  transition: transform 0.6s var(--transition), filter 0.4s;
}
.masonry-item:hover img { transform: scale(1.03); }
.masonry-item .img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,11,15,0.5), transparent 40%);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.masonry-item:hover .img-overlay { opacity: 1; }
@media (max-width: 900px) { .masonry { columns: 2; } }
@media (max-width: 500px) { .masonry { columns: 1; } }

.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(11,11,15,0.95); backdrop-filter: blur(20px);
  align-items: center; justify-content: center; padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  font-size: 2rem; color: var(--text-primary); cursor: pointer;
  background: none; border: none; transition: color 0.3s;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 2.5rem; color: var(--text-secondary); cursor: pointer;
  background: none; border: none; transition: color 0.3s; padding: 20px;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }
.lightbox-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--sans); font-size: 0.82rem; color: var(--text-muted);
}

.gallery-cta {
  padding: 80px 0; background: var(--dark-2); text-align: center;
  border-top: 1px solid rgba(197,165,90,0.06);
}
.gallery-cta h2 {
  font-family: var(--serif); font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 300; color: var(--white); margin-bottom: 12px;
}
.gallery-cta h2 em { color: var(--gold); font-style: italic; }
.gallery-cta p {
  font-family: var(--sans); font-size: 0.92rem; font-weight: 300;
  color: var(--text-secondary); margin-bottom: 32px;
}

/* Nav solid variant for sub-pages */
.nav.nav-solid {
  background: rgba(11,11,15,0.92); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); padding: 14px 0;
  border-bottom: 1px solid rgba(197,165,90,0.1);
}
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

/* ═══════════════════════════════
   GALLERY PAGE — PROMISE STRIP
   ═══════════════════════════════ */
.gallery-promise {
  padding: 56px 0;
  background: var(--dark-2);
  border-bottom: 1px solid rgba(197,165,90,0.06);
}
.gallery-promise-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; max-width: 900px; margin: 0 auto;
}
.gallery-promise-item { text-align: center; position: relative; }
.gallery-promise-item + .gallery-promise-item::before {
  content: ''; position: absolute; left: -20px; top: 10%; bottom: 10%;
  width: 1px; background: rgba(197,165,90,0.12);
}
.gallery-promise-value {
  font-family: var(--serif); font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.gallery-promise-value em { font-style: italic; }
.gallery-promise-label {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-secondary); margin-bottom: 6px;
}
.gallery-promise-desc {
  font-family: var(--sans); font-size: 0.85rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.6;
  max-width: 220px; margin: 0 auto;
}
@media (max-width: 768px) {
  .gallery-promise { padding: 40px 0; }
  .gallery-promise-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-promise-item + .gallery-promise-item::before { display: none; }
}

/* ═══════════════════════════════
   GALLERY PAGE — MOSAIC GRID (PLACEHOLDERS)
   ═══════════════════════════════ */
.gallery-mosaic {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; grid-auto-flow: dense; gap: 12px;
}
.gallery-mosaic-item {
  position: relative; overflow: hidden; background: var(--dark-3);
  cursor: pointer; transition: transform 0.5s var(--transition);
}
/* Pattern qui se répète tous les 12 items pour gérer n'importe quel nombre de photos */
.gallery-mosaic-item:nth-child(12n+1)  { grid-column: span 1; grid-row: span 2; }
.gallery-mosaic-item:nth-child(12n+2)  { grid-column: span 2; grid-row: span 1; }
.gallery-mosaic-item:nth-child(12n+3)  { grid-column: span 1; grid-row: span 2; }
.gallery-mosaic-item:nth-child(12n+4)  { grid-column: span 1; grid-row: span 1; }
.gallery-mosaic-item:nth-child(12n+5)  { grid-column: span 1; grid-row: span 1; }
.gallery-mosaic-item:nth-child(12n+6)  { grid-column: span 2; grid-row: span 2; }
.gallery-mosaic-item:nth-child(12n+7)  { grid-column: span 1; grid-row: span 1; }
.gallery-mosaic-item:nth-child(12n+8)  { grid-column: span 1; grid-row: span 1; }
.gallery-mosaic-item:nth-child(12n+9)  { grid-column: span 1; grid-row: span 2; }
.gallery-mosaic-item:nth-child(12n+10) { grid-column: span 2; grid-row: span 1; }
.gallery-mosaic-item:nth-child(12n+11) { grid-column: span 1; grid-row: span 1; }
.gallery-mosaic-item:nth-child(12n)    { grid-column: span 1; grid-row: span 2; }
.gallery-mosaic-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s var(--transition);
}
.gallery-mosaic-item:hover img {
  transform: scale(1.05);
}
.gallery-mosaic-item .img-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  font-family: var(--sans); font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted);
  border: 1px dashed rgba(107,104,96,0.3);
  margin: 8px; transition: all 0.4s var(--transition);
}
.gallery-mosaic-item .img-placeholder::before {
  content: ''; width: 28px; height: 1px; background: rgba(107,104,96,0.4);
  transition: all 0.4s var(--transition);
}
.gallery-mosaic-item:hover .img-placeholder {
  border-color: var(--gold); color: var(--gold);
}
.gallery-mosaic-item:hover .img-placeholder::before {
  background: var(--gold); width: 44px;
}
.gallery-mosaic-item .mosaic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,11,15,0.6), transparent 50%);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.gallery-mosaic-item:hover .mosaic-overlay { opacity: 1; }
@media (max-width: 900px) {
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; gap: 10px; }
  .gallery-mosaic-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-mosaic-item:nth-child(1),
  .gallery-mosaic-item:nth-child(6),
  .gallery-mosaic-item:nth-child(9) { grid-row: span 2; }
  .gallery-mosaic-item:nth-child(2),
  .gallery-mosaic-item:nth-child(10) { grid-column: span 2; }
}
@media (max-width: 500px) {
  .gallery-mosaic { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-mosaic-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
}

/* ═══════════════════════════════
   GALLERY PAGE — IMPROVED CTA (with testimonial)
   ═══════════════════════════════ */
.gallery-cta-quote {
  max-width: 580px; margin: 0 auto 40px;
  font-family: var(--serif); font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 300; font-style: italic; line-height: 1.7;
  color: var(--text-secondary);
  padding: 28px 32px; border-top: 1px solid rgba(197,165,90,0.12);
  border-bottom: 1px solid rgba(197,165,90,0.12);
  position: relative;
}
.gallery-cta-quote::before {
  content: '"'; position: absolute; top: 4px; left: 50%;
  transform: translateX(-50%); font-family: var(--serif); font-size: 2rem;
  color: var(--gold); background: var(--dark-2); padding: 0 12px; line-height: 1;
}
.gallery-cta-quote-author {
  display: block; margin-top: 14px;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-style: normal;
}

/* ═══════════════════════════════
   HERO — IMAGES FLOTTANTES (style backbone)
   ═══════════════════════════════ */
.hero-floats {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none; overflow: hidden;
}
.hero-float {
  position: absolute;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
  opacity: 0;
  animation: heroFloatIn 1.4s var(--transition) forwards;
}
.hero-float-card {
  width: 100%; height: 100%;
  background: var(--dark-3);
  border: 1px solid rgba(197,165,90,0.22);
  position: relative;
  overflow: hidden;
  animation: heroFloatBob 7s ease-in-out infinite;
}
.hero-float-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-float-card:hover img {
  transform: scale(1.06);
}
@keyframes heroFloatBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes heroFloatIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Position + rotation + dimensions de chaque tuile
   6 tuiles, plus aérées que la version "tout backbone" pour laisser
   le titre central respirer. */
.hero-float.pos-1 { top: 9%;   left: 5%;   width: 225px; height: 158px; transform: rotate(-6deg); animation-delay: 0.6s; }
.hero-float.pos-1 .hero-float-card { animation-delay: 0s; }

.hero-float.pos-2 { top: 6%;   right: 5%;  width: 198px; height: 261px; transform: rotate(5deg);  animation-delay: 0.7s; }
.hero-float.pos-2 .hero-float-card { animation-delay: -1.2s; }

.hero-float.pos-3 { top: 40%;  left: 11%;  width: 180px; height: 126px; transform: rotate(8deg);  animation-delay: 0.8s; }
.hero-float.pos-3 .hero-float-card { animation-delay: -2.4s; }

.hero-float.pos-4 { top: 33%;  right: 11%; width: 243px; height: 162px; transform: rotate(-5deg); animation-delay: 0.9s; }
.hero-float.pos-4 .hero-float-card { animation-delay: -3.6s; }

.hero-float.pos-5 { bottom: 13%; left: 7%; width: 216px; height: 149px; transform: rotate(4deg);  animation-delay: 1.0s; }
.hero-float.pos-5 .hero-float-card { animation-delay: -4.8s; }

.hero-float.pos-8 { bottom: 13%; right: 5%; width: 171px; height: 225px; transform: rotate(-4deg); animation-delay: 1.3s; }
.hero-float.pos-8 .hero-float-card { animation-delay: -5.4s; }

/* Responsive — réduit les tuiles puis les masque sur petits écrans */
@media (max-width: 1280px) {
  .hero-float.pos-1 { width: 180px; height: 126px; }
  .hero-float.pos-2 { width: 158px; height: 207px; }
  .hero-float.pos-4 { width: 194px; height: 131px; }
  .hero-float.pos-5 { width: 176px; height: 122px; }
  .hero-float.pos-8 { width: 140px; height: 180px; }
}
@media (max-width: 1100px) {
  .hero-float.pos-3, .hero-float.pos-4 { display: none; }
}
@media (max-width: 768px) {
  .hero-floats { display: none; }
}

/* ═══════════════════════════════
   À PROPOS — TEXTE SCROLL-REVEAL (style backbone)
   ═══════════════════════════════ */
.about-story {
  padding: 140px 0 100px;
  background: var(--dark-1);
  text-align: center;
}
.about-story .section-label,
.about-story .section-title { text-align: center; }
.scroll-reveal-text {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  line-height: 1.55;
  max-width: 880px;
  margin: 64px auto 0;
  text-align: left;
  letter-spacing: -0.005em;
}
.scroll-reveal-text .srt-word {
  color: var(--text-muted);
  transition: color 0.55s var(--transition);
}
.scroll-reveal-text .srt-word.lit {
  color: var(--text-primary);
}

/* ═══════════════════════════════════════
   GLOBAL ENHANCEMENTS
   Grain · Spotlight · Magnetic · Splash · Parallax
   ═══════════════════════════════════════ */

/* ─── GRAIN / TEXTURE FILM ───
   Overlay subtil sur tout le site pour donner un look "film argentique".
*/
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.6' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── CURSOR SPOTLIGHT ───
   Halo doré qui suit la souris en mode "screen" pour éclairer le contenu.
*/
.cursor-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(197, 165, 90, 0.10) 0%,
    rgba(197, 165, 90, 0.04) 30%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 9991;
  mix-blend-mode: screen;
  will-change: transform;
}
@media (max-width: 768px) {
  .cursor-spotlight {
    display: none;
  }
}

/* ─── MAGNETIC ELEMENTS ───
   Les éléments avec la classe `magnetic` sont attirés vers le curseur.
   Le JS met à jour --magnet-x / --magnet-y. Compose avec transform existant.
*/
.magnetic {
  translate: var(--magnet-x, 0) var(--magnet-y, 0);
  transition: all 0.4s var(--transition),
    translate 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── HERO PARALLAX ───
   Les tuiles flottantes du hero utilisent --parallax-x / --parallax-y.
   La transition douce donne l'effet "lag" 3D.
*/
.hero-float {
  translate: var(--parallax-x, 0) var(--parallax-y, 0);
  transition: translate 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.4s var(--transition);
}

/* ─── SPLASH LOADER ───
   Affiché à la première visite de la session, ~1.2s.
*/
html.splash-active {
  overflow: hidden;
}
html.splash-active body {
  overflow: hidden;
}
.splash-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--dark-1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.splash-loader.out {
  opacity: 0;
  pointer-events: none;
}
.splash-logo-img {
  width: clamp(180px, 26vw, 260px);
  height: auto;
  display: block;
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.splash-loader.in .splash-logo-img {
  opacity: 1;
  transform: scale(1);
}

/* ─── COOKIE BANNER ───
   Bandeau de consentement RGPD / nLPD discret en bas du site.
*/
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  z-index: 9995;
  width: calc(100% - 48px);
  max-width: 720px;
  background: rgba(22, 22, 31, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(197, 165, 90, 0.18);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  transform: translateX(-50%) translateY(140%);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-banner.in {
  transform: translateX(-50%) translateY(0);
}
.cookie-banner.out {
  transform: translateX(-50%) translateY(140%);
  pointer-events: none;
}
.cookie-content {
  flex: 1;
  min-width: 0;
}
.cookie-title {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.cookie-desc {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}
.cookie-desc a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.cookie-desc a:hover {
  color: var(--gold-light);
}
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--transition);
  white-space: nowrap;
}
.cookie-deny {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(168, 165, 160, 0.2);
}
.cookie-deny:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.cookie-accept {
  background: var(--gold);
  color: var(--dark-1);
}
.cookie-accept:hover {
  background: var(--gold-light);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px 22px;
    bottom: 16px;
    width: calc(100% - 32px);
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
    padding: 14px 16px;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════
   CALCULATEUR DEVIS — toutes les classes scopées #cc
   Les variables locales sont mappées sur le design system global.
   Plus aucun !important — le scope #cc isole déjà les styles.
   ═══════════════════════════════════════════════ */

#cc {
  /* Variables locales mappées sur les globales */
  --g: var(--gold);
  --gl: var(--gold-light);
  --gg: var(--gold-dim);
  --ggs: rgba(197, 165, 90, 0.22);
  --b0: var(--dark-1);
  --b1: var(--dark-card);
  --b2: var(--dark-3);
  --b3: var(--dark-3);
  --b4: var(--dark-4);
  --t0: var(--text-primary);
  --t1: var(--text-secondary);
  --t2: var(--text-muted);
  --bd: rgba(197, 165, 90, 0.12);
  --ba: rgba(197, 165, 90, 0.4);
  --gr: #7EBF8E;
  --rd: 12px;
  --rs: 8px;
  --tr: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  font-family: var(--sans);
  background: var(--b0);
  color: var(--t0);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ─── Layout ─── */
#cc .cw { max-width: 820px; margin: 0 auto; padding: 40px 20px 60px; }
#cc .ch { text-align: center; margin-bottom: 48px; }

/* ─── Logo + header ─── */
#cc .clg { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 32px; }
#cc .clb { width: 44px; height: 44px; border: 2.5px solid var(--g); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 22px; color: var(--t0); }
#cc .clt { font-weight: 700; font-size: 28px; color: var(--t0); }
#cc .col { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--g); margin-bottom: 16px; }
#cc h1 { font-family: var(--serif); font-size: clamp(28px, 5vw, 42px); font-weight: 300; line-height: 1.2; margin-bottom: 12px; color: var(--t0); }
#cc .csb { font-size: 15px; color: var(--t1); line-height: 1.6; max-width: 520px; margin: 0 auto; }

/* ─── Stepper ─── */
#cc .stp { display: flex; align-items: center; justify-content: center; margin-bottom: 40px; }
#cc .sdo { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--bd); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: var(--t2); background: var(--b1); transition: var(--tr); }
#cc .sdo.ac { border-color: var(--g); color: var(--g); background: var(--gg); box-shadow: 0 0 20px rgba(197, 165, 90, 0.15); }
#cc .sdo.dn { border-color: var(--g); background: var(--g); color: var(--b0); }
#cc .sli { width: 40px; height: 1px; background: var(--bd); transition: var(--tr); }
#cc .sli.dn { background: var(--g); }

/* ─── Sections (étapes) ─── */
#cc .sct { display: none; }
#cc .sct.vis { display: block; animation: ccFadeIn 0.5s ease; }
@keyframes ccFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
#cc .ttl { font-family: var(--serif); font-size: 26px; font-weight: 400; margin-bottom: 8px; color: var(--t0); }
#cc .dsc { font-size: 14px; color: var(--t1); margin-bottom: 32px; line-height: 1.6; }

/* ─── Cards de sélection ─── */
#cc .cgr { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-bottom: 36px; }
#cc .cg2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
#cc .crd { background: var(--b1); border: 1.5px solid var(--bd); border-radius: var(--rd); padding: 28px 24px; cursor: pointer; transition: var(--tr); position: relative; overflow: hidden; }
#cc .crd::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--g); transform: scaleX(0); transition: var(--tr); }
#cc .crd:hover { background: var(--b2); border-color: var(--ba); }
#cc .crd.on { border-color: var(--g); background: var(--gg); }
#cc .crd.on::before { transform: scaleX(1); }
#cc .crd .ico { font-size: 28px; margin-bottom: 16px; display: block; color: var(--g); }
#cc .crd .nm { font-family: var(--serif); font-size: 20px; font-weight: 500; margin-bottom: 6px; color: var(--t0); }
#cc .crd .ds { font-size: 13px; color: var(--t1); line-height: 1.5; }
#cc .crd .chk { position: absolute; top: 14px; right: 14px; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--bd); display: flex; align-items: center; justify-content: center; transition: var(--tr); }
#cc .crd.on .chk { border-color: var(--g); background: var(--g); }
#cc .crd.on .chk::after { content: '✓'; font-size: 12px; color: var(--b0); font-weight: 700; }

/* ─── Badge "économie" ─── */
#cc .svb { display: inline-block; padding: 4px 10px; border-radius: 20px; background: rgba(126, 191, 142, 0.12); border: 1px solid rgba(126, 191, 142, 0.25); font-size: 11px; font-weight: 600; color: var(--gr); margin-top: 12px; }

/* ─── Couverture (cases à cocher horizontales) ─── */
#cc .cvl2 { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
#cc .cvi { display: flex; align-items: center; justify-content: space-between; background: var(--b1); border: 1.5px solid var(--bd); border-radius: var(--rs); padding: 18px 22px; cursor: pointer; transition: var(--tr); user-select: none; }
#cc .cvi:hover { border-color: var(--ba); background: var(--b2); }
#cc .cvi.on { border-color: var(--g); background: var(--gg); }
#cc .cvlf { display: flex; align-items: center; gap: 16px; }
#cc .cvtg { width: 22px; height: 22px; border-radius: 4px; border: 1.5px solid var(--t2); display: flex; align-items: center; justify-content: center; transition: var(--tr); flex-shrink: 0; }
#cc .cvi.on .cvtg { border-color: var(--g); background: var(--g); }
#cc .cvi.on .cvtg::after { content: '✓'; font-size: 12px; color: var(--b0); font-weight: 700; }
#cc .cvnm { font-size: 15px; font-weight: 500; color: var(--t0); }
#cc .cvdt { font-size: 12px; color: var(--t1); margin-top: 2px; }
#cc .cvhr { font-size: 13px; color: var(--t2); font-weight: 500; white-space: nowrap; }
#cc .cvlb { font-size: 13px; font-weight: 600; color: var(--g); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; display: block; }
#cc .cvh { font-size: 12px; color: var(--t2); font-style: italic; margin-top: 8px; margin-bottom: 24px; }

/* ─── Note d'info ─── */
#cc .inote { background: var(--gg); border-left: 2px solid var(--g); padding: 14px 18px; border-radius: 0 var(--rs) var(--rs) 0; font-size: 13px; color: var(--t1); line-height: 1.5; margin-bottom: 24px; }

/* ─── Tags d'options (photos couple/groupe/famille) ─── */
#cc .ckgr { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
#cc .ckit { padding: 14px 20px; border-radius: var(--rs); border: 1.5px solid var(--bd); background: var(--b1); cursor: pointer; transition: var(--tr); font-size: 14px; font-weight: 500; color: var(--t1); user-select: none; }
#cc .ckit:hover { border-color: var(--ba); }
#cc .ckit.on { border-color: var(--g); background: var(--gg); color: var(--g); }

/* ─── Formulaire contact ─── */
#cc .fgd { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
#cc .fgp { display: flex; flex-direction: column; gap: 6px; }
#cc .fgp.fw { grid-column: 1 / -1; }
#cc .flb { font-size: 12px; font-weight: 600; color: var(--t1); letter-spacing: 0.5px; text-transform: uppercase; }
#cc .fin { background: var(--b3); border: 1.5px solid var(--bd); border-radius: var(--rs); padding: 14px 16px; font-family: var(--sans); font-size: 15px; color: var(--t0); transition: var(--tr); outline: none; width: 100%; }
#cc .fin::placeholder { color: var(--t2); }
#cc .fin:focus { border-color: var(--g); box-shadow: 0 0 0 3px var(--gg); }
#cc .fta { min-height: 80px; resize: vertical; }

/* ─── Boutons ─── */
#cc .btn { padding: 14px 32px; border-radius: var(--rs); font-family: var(--sans); font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--tr); border: none; display: inline-block; }
#cc .bp { background: var(--g); color: var(--b0); }
#cc .bp:hover { background: var(--gl); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(197, 165, 90, 0.3); }
#cc .bp:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }
#cc .bs { background: transparent; color: var(--t1); border: 1.5px solid var(--bd); }
#cc .bs:hover { border-color: var(--ba); color: var(--t0); }
#cc .bgrp { display: flex; gap: 12px; justify-content: space-between; align-items: center; margin-top: 32px; }

/* ─── Barre d'estimation collante en bas ─── */
#cc .ebar { position: sticky; bottom: 20px; background: var(--b4); border: 1px solid var(--bd); border-radius: var(--rd); padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.5); z-index: 100; margin-top: 24px; }
#cc .elab { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--t2); font-weight: 600; }
#cc .eprc { font-family: var(--serif); font-size: 28px; font-weight: 500; color: var(--g); line-height: 1; }
#cc .eprc .cur { font-size: 16px; }
#cc .ehrs { font-size: 13px; color: var(--t1); }
#cc .esvg { font-size: 12px; color: var(--gr); font-weight: 600; display: none; }
#cc .esvg.vis { display: block; }

/* ─── Boîtes ─── */
#cc .bbox { background: linear-gradient(135deg, rgba(197, 165, 90, 0.08), rgba(197, 165, 90, 0.03)); border: 1px solid rgba(197, 165, 90, 0.2); border-radius: var(--rd); padding: 20px 24px; margin-bottom: 28px; }
#cc .cibox { background: var(--b1); border: 1.5px solid var(--bd); border-radius: var(--rd); padding: 28px 24px; margin-bottom: 32px; }
#cc .citl { font-family: var(--serif); font-size: 20px; font-weight: 500; margin-bottom: 12px; color: var(--g); }
#cc .prk { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--t1); line-height: 1.5; margin-bottom: 10px; }
#cc .prki { flex-shrink: 0; color: var(--g); }

/* ─── Page de remerciement (étape 5, gardée en backup même si on redirige vers /merci) ─── */
#cc .rpnl { background: var(--b1); border: 1.5px solid var(--bd); border-radius: var(--rd); padding: 40px 32px; text-align: center; position: relative; overflow: hidden; }
#cc .rpnl::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--g), transparent); }
#cc .rttl { font-family: var(--serif); font-size: 28px; font-weight: 400; margin-bottom: 12px; }
#cc .rsub { font-size: 14px; color: var(--t1); line-height: 1.6; margin-bottom: 32px; max-width: 440px; margin-left: auto; margin-right: auto; }
#cc .sbdg { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 24px; }
#cc .bdg { padding: 6px 14px; border-radius: 20px; background: var(--gg); border: 1px solid rgba(197, 165, 90, 0.2); font-size: 12px; color: var(--g); font-weight: 500; }
#cc .rbkd { background: var(--b0); border-radius: var(--rs); padding: 24px; margin-bottom: 28px; text-align: left; }
#cc .brw { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 14px; color: var(--t1); border-bottom: 1px solid var(--bd); }
#cc .brw:last-child { border-bottom: none; }
#cc .brw.tot { color: var(--t0); font-weight: 600; font-size: 16px; padding-top: 16px; margin-top: 4px; border-top: 1px solid var(--ba); border-bottom: none; }
#cc .brw.tot .rv { color: var(--g); font-family: var(--serif); font-size: 26px; }
#cc .rv { font-weight: 500; color: var(--t0); }
#cc .rvg { font-weight: 600; color: var(--gr); }
#cc .rci { margin-top: 20px; font-size: 13px; color: var(--t2); }
#cc .rci a { color: var(--g); text-decoration: none; }

/* ─── Responsive ─── */
@media (max-width: 600px) {
  #cc .cw { padding: 24px 16px 80px; }
  #cc .cgr,
  #cc .cg2 { grid-template-columns: 1fr; }
  #cc .fgd { grid-template-columns: 1fr; }
  #cc .fgp.fw { grid-column: auto; }
  #cc .ebar { padding: 14px 18px; flex-wrap: wrap; gap: 12px; }
  #cc .eprc { font-size: 22px; }
  #cc .bgrp { flex-direction: column-reverse; }
  #cc .bgrp .btn { width: 100%; text-align: center; }
  #cc .sli { width: 24px; }
  #cc .rpnl { padding: 28px 20px; }
  #cc .ckgr { flex-direction: column; }
}
@media (max-width: 768px) {
  .about-story { padding: 100px 0 60px; }
  .scroll-reveal-text { margin-top: 40px; }
}
