/* ════════════════════════════════════════════════════════
   PLUME & MÉLODIE — Styles
   Aesthetic: Luxury Noir Artisanal
   Fonts: Cormorant Garamond + Jost
   ════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --gold:           #F0B429;
  --gold-light:     #F5C84A;
  --gold-dim:       rgba(240, 180, 41, 0.15);
  --gold-border:    rgba(240, 180, 41, 0.3);
  --black:          #080808;
  --surface:        #111111;
  --surface-2:      #191919;
  --surface-3:      #222222;
  --white:          #F5F0E8;
  --white-muted:    rgba(245, 240, 232, 0.6);
  --white-subtle:   rgba(245, 240, 232, 0.12);

  --serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:   'Jost', system-ui, sans-serif;

  --radius:     2px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);

  --nav-h: 72px;
  --max-w: 1100px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 20px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Background image pleine page (fixe) ───────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url('background.png') center / cover no-repeat;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(8, 8, 8, 0.78);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--sans); border: none; background: none; }
ul { list-style: none; }
textarea, input, select {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
}

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
}
h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
  letter-spacing: -0.02em;
}
h1 em {
  font-style: italic;
  color: var(--gold);
}
h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: -0.02em;
}
h2 em {
  font-style: italic;
  color: var(--gold);
}
h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
}

/* ── Layout helpers ────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}
.section {
  padding: clamp(5rem, 10vw, 10rem) 0;
  position: relative;
}
.section-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-sub {
  margin-top: 1.2rem;
  font-size: 1rem;
  color: var(--white-muted);
  max-width: 520px;
}
.section-tag {
  position: absolute;
  top: clamp(2rem, 4vw, 3.5rem);
  left: clamp(1.5rem, 5vw, 4rem);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}
@media (min-width: 1200px) {
  .section-tag {
    left: calc((100vw - var(--max-w)) / 2 + 4rem);
  }
}

/* ── Buttons ───────────────────────────────────────────── */
.btn-gold {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease);
  border-radius: var(--radius);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
  border-radius: var(--radius);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.btn-ghost {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  color: var(--white-muted);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--white-subtle);
  transition: color 0.2s, border-color 0.2s;
  border-radius: var(--radius);
}
.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(245, 240, 232, 0.3);
}

/* ════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  border-color: var(--gold-border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo img {
  height: 52px;
  width: auto;
  filter: brightness(1.3) drop-shadow(0 0 8px rgba(240,180,41,0.25));
  transition: opacity 0.2s, filter 0.2s;
}
.nav-logo:hover img {
  filter: brightness(1.5) drop-shadow(0 0 12px rgba(240,180,41,0.4));
}
.nav-logo:hover img { opacity: 0.8; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s;
}
.nav-links .nav-cta:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem clamp(1.5rem, 5vw, 4rem) 3rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--gold-border);
    transform: translateY(-110%);
    transition: transform 0.35s var(--ease);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links a { font-size: 1rem; }
  .nav-links .nav-cta { border: none; padding: 0; }
  .nav-burger { display: flex; }
}

/* ════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 4rem) clamp(1.5rem, 5vw, 4rem) 6rem;
  position: relative;
  overflow: hidden;
}

/* Hero overlay (gradient bas pour fondu vers le reste de la page) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.45) 0%,
    rgba(8,8,8,0.30) 50%,
    rgba(8,8,8,0.70) 100%
  );
  z-index: 0;
}

/* Gold glow */
.hero::after {
  content: '';
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(240,180,41,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  animation: heroFadeUp 1.1s var(--ease-out) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  animation: heroFadeUp 1.1s 0.15s var(--ease-out) both;
}

.hero-content h1 {
  animation: heroFadeUp 1.1s 0.25s var(--ease-out) both;
}

.hero-desc {
  margin-top: 2rem;
  max-width: 500px;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--white-muted);
  line-height: 1.85;
  animation: heroFadeUp 1.1s 0.4s var(--ease-out) both;
}
.hero-actions {
  margin-top: 2.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: heroFadeUp 1.1s 0.5s var(--ease-out) both;
}

/* Butterflies */
.butterfly-deco {
  position: absolute;
  color: var(--gold);
  pointer-events: none;
  z-index: 1;
}
.butterfly-deco svg { width: 100%; height: 100%; }

.deco-1 {
  width: clamp(120px, 18vw, 220px);
  top: 18%; right: 8%;
  animation: floatA 8s ease-in-out infinite;
  opacity: 0.6;
}
.deco-2 {
  width: clamp(70px, 10vw, 140px);
  bottom: 25%; right: 18%;
  animation: floatB 10s ease-in-out infinite;
  opacity: 0.35;
}
.deco-3 {
  width: clamp(50px, 7vw, 90px);
  top: 55%; right: 3%;
  animation: floatA 12s 2s ease-in-out infinite;
  opacity: 0.2;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%       { transform: translateY(-18px) rotate(3deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50%       { transform: translateY(-14px) rotate(-4deg); }
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 1;
  animation: heroFadeUp 1.2s 0.8s var(--ease-out) both;
}
.hero-scroll span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold-border), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ════════════════════════════════════════════════════════
   CONCEPT
   ════════════════════════════════════════════════════════ */
/* ── Vidéo ─────────────────────────────────────────────── */
.video-section { background: rgba(8, 8, 8, 0.50); }

.video-wrapper {
  max-width: 820px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--surface-3);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.video-wrapper video {
  width: 100%;
  display: block;
  background: var(--black);
}

.concept { background: rgba(17, 17, 17, 0.55); }

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.step {
  position: relative;
  padding: 0 1rem;
}
.step-num {
  font-family: var(--serif);
  font-size: clamp(5rem, 8vw, 8rem);
  font-weight: 300;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
  margin-bottom: -2rem;
  user-select: none;
}
.step-body { position: relative; z-index: 1; }
.step-icon {
  width: 40px; height: 40px;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.step-icon svg { width: 100%; height: 100%; }
.step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-family: var(--serif);
}
.step p {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.8;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  width: 80px;
  color: var(--gold);
  opacity: 0.25;
}
.step-connector svg { width: 40px; height: 26px; }

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .step-connector {
    display: none;
  }
  .step { padding: 0; }
}

/* ════════════════════════════════════════════════════════
   ÉCOUTER
   ════════════════════════════════════════════════════════ */
.ecouter { background: rgba(8, 8, 8, 0.50); }

.player-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.player-card {
  width: 100%;
  max-width: 560px;
  background: var(--surface);
  border: 1px solid var(--surface-3);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s;
}
.player-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240,180,41,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.player-card.playing {
  border-color: var(--gold-border);
}

.player-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 2rem;
  height: 100px;
}
.player-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: brightness(1.1);
}

/* Pulse rings */
.pulse-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.pulse-rings span {
  position: absolute;
  width: 80px; height: 80px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0;
  transform: scale(1);
}
.pulse-rings span:nth-child(1) { transition-delay: 0s; }
.pulse-rings span:nth-child(2) { transition-delay: 0.4s; }
.pulse-rings span:nth-child(3) { transition-delay: 0.8s; }

.player-card.playing .pulse-rings span {
  animation: ringPulse 2.4s ease-out infinite;
}
.player-card.playing .pulse-rings span:nth-child(2) {
  animation-delay: 0.8s;
}
.player-card.playing .pulse-rings span:nth-child(3) {
  animation-delay: 1.6s;
}

@keyframes ringPulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0;   transform: scale(2.4); }
}

.player-meta { text-align: center; margin-bottom: 1.8rem; }
.player-track {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.player-artist {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}
.ctrl-btn {
  flex-shrink: 0;
  width: 34px; height: 34px;
  color: var(--white-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.ctrl-btn:hover { color: var(--gold); }
.ctrl-btn svg { width: 16px; height: 16px; }
.play-btn {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.play-btn:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}
.play-btn svg { width: 15px; height: 15px; }

.player-progress-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.player-time {
  font-size: 0.72rem;
  color: var(--white-muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0;
}
.progress-track {
  flex: 1;
  height: 2px;
  background: var(--surface-3);
  cursor: pointer;
  border-radius: 1px;
  position: relative;
}
.progress-track:hover .progress-fill::after {
  transform: translateY(-50%) scale(1);
}
.progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 1px;
  width: 0%;
  transition: width 0.1s linear;
  position: relative;
}
.progress-fill::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  transition: transform 0.2s;
}

/* Playlist */
.playlist {
  border-top: 1px solid var(--surface-3);
  padding-top: 0.5rem;
}
.playlist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 1px solid transparent;
}
.playlist-item:hover {
  background: var(--surface-3);
}
.playlist-item.active {
  background: var(--gold-dim);
  border-bottom-color: var(--gold-border);
}
.pl-num {
  font-size: 0.68rem;
  color: var(--gold);
  opacity: 0.5;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  width: 18px;
  text-align: right;
}
.playlist-item.active .pl-num { opacity: 1; }
.pl-title {
  flex: 1;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--white-muted);
  transition: color 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.playlist-item.active .pl-title,
.playlist-item:hover .pl-title { color: var(--white); }
.pl-dur {
  font-size: 0.7rem;
  color: var(--white-muted);
  opacity: 0.5;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.player-note {
  font-size: 0.8rem;
  color: var(--white-muted);
  text-align: center;
  max-width: 420px;
  opacity: 0.7;
  font-style: italic;
  font-family: var(--serif);
}

/* ════════════════════════════════════════════════════════
   TÉMOIGNAGES
   ════════════════════════════════════════════════════════ */
.temoignages { background: rgba(17, 17, 17, 0.55); }

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.temoignage {
  background: var(--surface-2);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  border-top: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.temoignage:hover {
  background: var(--surface-3);
  border-color: var(--gold-border);
}
.temoignage.featured {
  background: var(--surface-3);
  border-top: 1px solid var(--gold-border);
}
.temo-quote {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.2;
  margin-bottom: -1.5rem;
  user-select: none;
}
.temoignage p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.temoignage cite {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

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

/* ════════════════════════════════════════════════════════
   OFFRES
   ════════════════════════════════════════════════════════ */
.offres { background: rgba(8, 8, 8, 0.50); }

.offres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--surface-3);
  border: 1px solid var(--surface-3);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.offre-card {
  background: var(--surface-2);
  padding: clamp(1.8rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.3s;
}
.offre-card:hover { background: var(--surface-3); }
.offre-card.featured {
  background: var(--black);
  border-top: 2px solid var(--gold);
}

.offre-badge {
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 0 0 4px 4px;
}

.offre-header { margin-bottom: 1.5rem; }
.offre-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 0.6rem;
}
.offre-card.featured .offre-tag { opacity: 1; }
.offre-name {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.offre-subtitle {
  font-size: 0.8rem;
  color: var(--white-muted);
  opacity: 0.7;
}

.offre-price {
  margin-bottom: 1.8rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--surface-3);
}
.price-amount {
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.price-amount em {
  font-style: normal;
  font-size: 1.6rem;
  color: var(--gold);
}
.offre-card.featured .price-amount { color: var(--gold); }
.price-sub {
  font-size: 0.75rem;
  color: var(--white-muted);
  opacity: 0.6;
}

.offre-feats {
  list-style: none;
  flex: 1;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.offre-feats li {
  font-size: 0.85rem;
  color: var(--white-muted);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--surface-3);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.5;
}
.offre-feats li::before {
  content: '—';
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 0.05rem;
}
.offre-card.featured .offre-feats li { color: var(--white); }
.offre-card.featured .offre-feats li::before { opacity: 1; }
.offre-feats li:last-child { border-bottom: none; }

.offre-cta {
  display: block;
  text-align: center;
  margin-top: auto;
}

/* Options additionnelles */
.options-block {
  background: var(--surface-2);
  border: 1px solid var(--surface-3);
  border-radius: 4px;
  padding: 1.5rem 2rem;
}
.options-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 1rem;
  opacity: 0.7;
}
.options-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.options-tags span {
  font-size: 0.78rem;
  color: var(--white-muted);
  border: 1px solid var(--surface-3);
  border-radius: 20px;
  padding: 0.35rem 0.9rem;
  transition: border-color 0.2s, color 0.2s;
}
.options-tags span:hover {
  border-color: var(--gold-border);
  color: var(--white);
}

@media (max-width: 900px) {
  .offres-grid {
    grid-template-columns: 1fr;
  }
  .offre-card.featured { border-top: 2px solid var(--gold); }
}

/* ════════════════════════════════════════════════════════
   INSPIRATION
   ════════════════════════════════════════════════════════ */
.inspiration-band {
  background: rgba(240, 180, 41, 0.06);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.inspi-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 3rem;
}

.inspi-deco {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  user-select: none;
}

.inspi-content h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.inspi-content h3 em {
  color: var(--gold);
  font-style: italic;
}

.inspi-content p {
  font-size: 0.95rem;
  color: var(--white-muted);
  max-width: 54ch;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.inspi-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.inspi-list li {
  font-size: 0.82rem;
  color: var(--white-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.inspi-list li::before {
  content: '—';
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.inspi-cta {
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 800px) {
  .inspi-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .inspi-deco { display: none; }
  .inspi-list li { justify-content: center; }
  .inspi-cta { text-align: center; }
}

/* ════════════════════════════════════════════════════════
   COMMANDER
   ════════════════════════════════════════════════════════ */
.commander { background: rgba(8, 8, 8, 0.50); }

.form-wrapper {
  max-width: 640px;
}

/* Progress bar */
.form-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 3rem;
}
.prog-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.35;
  transition: opacity 0.3s;
}
.prog-step.active { opacity: 1; }
.prog-step.done   { opacity: 0.6; }
.prog-step span {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  transition: background 0.3s;
}
.prog-step.active span { background: var(--gold); color: var(--black); border-color: var(--gold); }
.prog-step.done  span  { background: rgba(240,180,41,0.2); }
.prog-step em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-muted);
}
.prog-line {
  flex: 1;
  height: 1px;
  background: var(--surface-3);
  margin: 0 0.8rem;
  max-width: 60px;
}

/* Form steps */
.form-step {
  display: none;
  animation: stepIn 0.4s var(--ease-out) both;
}
.form-step.active { display: block; }

@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.step-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--white);
}

/* Option cards (occasions + styles) */
.options-grid {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.occasions  { grid-template-columns: repeat(2, 1fr); }
.styles     { grid-template-columns: repeat(2, 1fr); }

.option-card {
  position: relative;
  cursor: pointer;
}
.option-card input[type="radio"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.option-card span {
  display: block;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--surface-3);
  background: var(--surface);
  font-size: 0.85rem;
  color: var(--white-muted);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  border-radius: var(--radius);
}
.option-card:hover span {
  border-color: var(--gold-border);
  color: var(--white);
}
.option-card input:checked ~ span {
  border-color: var(--gold);
  background: var(--gold-dim);
  color: var(--gold);
}

/* Fields */
.field-group {
  margin-bottom: 1.8rem;
}
.field-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 0.6rem;
}
.field-hint {
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  color: var(--white-muted);
  opacity: 0.6;
  margin-left: 0.5rem;
}
.field-group input[type="text"],
.field-group input[type="email"],
.field-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--surface);
  border: 1px solid var(--surface-3);
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  border-radius: var(--radius);
  resize: vertical;
}
.field-group input:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--gold-border);
}
.field-group textarea { min-height: 120px; }

.step-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 0;
  animation: stepIn 0.5s var(--ease-out) both;
}
.form-success.visible { display: block; }
.success-icon {
  width: 90px;
  margin: 0 auto 2rem;
  color: var(--gold);
}
.success-icon svg { width: 100%; }
.form-success h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 1rem;
}
.form-success p {
  color: var(--white-muted);
  max-width: 440px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

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

/* ════════════════════════════════════════════════════════
   À PROPOS
   ════════════════════════════════════════════════════════ */
.apropos { background: rgba(17, 17, 17, 0.55); }

.apropos-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.apropos-text h2 { margin-bottom: 2rem; }
.apropos-text p {
  font-size: 1rem;
  color: var(--white-muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.apropos-values {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.value-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--surface-3);
}
.value-row:first-child { border-top: 1px solid var(--surface-3); }
.value-num {
  color: var(--gold);
  opacity: 0.5;
  font-size: 1.2rem;
  font-family: var(--serif);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.value-row strong {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.value-row p {
  font-size: 0.88rem;
  color: var(--white-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .apropos-layout { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--surface-2);
  padding: clamp(4rem, 8vw, 7rem) 0 3rem;
  position: relative;
  overflow: hidden;
}

.footer-butterfly {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  color: var(--gold);
  opacity: 0.04;
  pointer-events: none;
}
.footer-butterfly svg { width: 100%; }

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  position: relative;
}
.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 0.5rem;
  filter: brightness(1.1);
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--white-muted);
}
.footer-email {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-email:hover { opacity: 1; }
.footer-sep {
  width: 40px;
  height: 1px;
  background: var(--gold-border);
  margin: 0.5rem auto;
}
.footer-copy {
  font-size: 0.72rem;
  color: var(--white-muted);
  opacity: 0.35;
  letter-spacing: 0.05em;
}

/* ════════════════════════════════════════════════════════
   FADE-IN ON SCROLL
   ════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ════════════════════════════════════════════════════════
   SCROLLBAR
   ════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-border); }

/* ════════════════════════════════════════════════════════
   SELECTION
   ════════════════════════════════════════════════════════ */
::selection {
  background: rgba(240, 180, 41, 0.25);
  color: var(--white);
}

/* ════════════════════════════════════════════════════════
   PAGES SEO
   ════════════════════════════════════════════════════════ */
.seo-page { padding-top: var(--nav-h); min-height: 100vh; }
.seo-article { max-width: 780px; margin: 0 auto; padding: clamp(3rem, 6vw, 6rem) 0; }
.seo-header { margin-bottom: 4rem; padding-bottom: 3rem; border-bottom: 1px solid var(--surface-3); }
.seo-header h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.2rem; line-height: 1.15; }
.seo-header h1 em { color: var(--gold); font-style: italic; }
.seo-intro { font-size: 1.1rem; color: var(--white-muted); line-height: 1.8; max-width: 60ch; }
.seo-section { margin-bottom: 3rem; }
.seo-section h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--white); margin-bottom: 1rem; }
.seo-section p { font-size: 0.95rem; color: var(--white-muted); line-height: 1.9; margin-bottom: 1rem; }
.seo-section strong { color: var(--white); font-weight: 500; }
.seo-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-top: 0.5rem; }
.seo-list li { font-size: 0.92rem; color: var(--white-muted); padding-left: 1.5rem; position: relative; line-height: 1.7; }
.seo-list li::before { content: '—'; color: var(--gold); position: absolute; left: 0; }
ol.seo-list { counter-reset: seo-counter; }
ol.seo-list li { counter-increment: seo-counter; }
ol.seo-list li::before { content: counter(seo-counter); color: var(--gold); font-family: var(--serif); font-size: 0.85rem; }
.seo-offres { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--surface-3); border: 1px solid var(--surface-3); border-radius: 4px; overflow: hidden; margin-top: 1rem; }
.seo-offre { background: var(--surface-2); padding: 1.5rem; }
.seo-offre.featured { background: var(--black); border-top: 2px solid var(--gold); }
.seo-offre h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: var(--white); margin-bottom: 0.6rem; }
.seo-offre.featured h3 { color: var(--gold); }
.seo-offre p { font-size: 0.82rem; color: var(--white-muted); line-height: 1.6; }
.seo-faq { display: flex; flex-direction: column; gap: 1.5rem; }
.seo-faq-item h3 { font-family: var(--sans); font-size: 0.9rem; font-weight: 500; color: var(--white); margin-bottom: 0.4rem; }
.seo-faq-item p { font-size: 0.88rem; color: var(--white-muted); line-height: 1.7; }
.seo-cta-block { margin-top: 4rem; padding: 3rem; background: rgba(240, 180, 41, 0.05); border: 1px solid var(--gold-border); border-radius: 4px; text-align: center; }
.seo-cta-block h2 { font-family: var(--serif); font-size: 1.8rem; margin-bottom: 0.8rem; }
.seo-cta-block p { color: var(--white-muted); margin-bottom: 1.8rem; }
.seo-cta-block .btn-gold, .seo-cta-block .btn-outline { margin: 0 0.5rem; }
@media (max-width: 700px) { .seo-offres { grid-template-columns: 1fr; } .seo-cta-block { padding: 2rem 1.5rem; } .seo-cta-block .btn-gold, .seo-cta-block .btn-outline { display: block; margin: 0.5rem 0; text-align: center; } }
