/* ============================================================
   DOUBLE FOCUS — style.css
   ✏️  Les zones marquées "✏️" sont à personnaliser
============================================================ */

/* === VARIABLES — modifiez ici pour changer les couleurs === */
:root {
  --gold: #c9a96e;
  --gold-dim: rgba(201, 169, 110, 0.15);
  --gold-border: rgba(201, 169, 110, 0.2);
  --dark: #080808;
  --dark-2: #0f0f0f;
  --dark-3: #171717;
  --dark-4: #202020;
  --text: #ede9e3;
  --muted: #847d74;
  --border: rgba(201, 169, 110, 0.18);
}

/* === RESET & BASE === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--dark);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}

/* === UTILITAIRES === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.gold-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.section-header {
  margin-bottom: 4rem;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered .gold-line {
  margin: 1.5rem auto;
}
.section-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.85;
  max-width: 520px;
}
.section-header.centered .section-desc {
  margin: 0 auto;
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
}
h2 em {
  font-style: italic;
  color: var(--gold);
}
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
}

/* === BOUTONS === */
.btn-gold {
  padding: 0.9rem 2.5rem;
  background: var(--gold);
  color: var(--dark);
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
  font-weight: 400;
}
.btn-gold:hover {
  opacity: 0.85;
}
.btn-outline {
  padding: 0.9rem 2.5rem;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-gold-sm {
  padding: 0.6rem 1.6rem;
  background: var(--gold);
  color: var(--dark);
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-weight: 400;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.btn-gold-sm:hover {
  opacity: 0.85;
}

/* ============================================================
   NAVIGATION
============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.4rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.97), transparent);
  transition: background 0.3s;
}
#navbar.scrolled {
  background: rgba(8, 8, 8, 0.98);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  position: absolute; /* ← centrage parfait */
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-cta {
  padding: 0.5rem 1.4rem;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 50%,
      rgba(201, 169, 110, 0.05) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 70% 30%,
      rgba(201, 169, 110, 0.03) 0%,
      transparent 50%
    );
}
/* Vidéo en fond — décommentez dans le HTML pour l'activer */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(8, 8, 8, 0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid var(--border);
  padding: 0.45rem 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.2s forwards;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-badge span {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s 0.4s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-claim {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}
.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-bar {
  width: 1px;
  height: 48px;
  overflow: hidden;
  position: relative;
}
.scroll-bar::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: var(--gold);
  animation: scrollDown 1.8s ease-in-out infinite;
}

/* ============================================================
   BANNIÈRE URGENCE
============================================================ */
.urgency-banner {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.6rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.urgency-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.urgency-icon {
  font-size: 1.4rem;
}
.urgency-left h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
}
.urgency-left h3 em {
  font-style: italic;
  color: var(--gold);
}
.urgency-left p {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.2rem;
}
.urgency-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.urgency-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.slots {
  display: flex;
  gap: 0.4rem;
}
.slot {
  width: 26px;
  height: 26px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}
.slot.taken {
  background: var(--gold-dim);
}
.slot.taken::after {
  content: "✓";
  color: var(--gold);
}
.slot.open {
  opacity: 0.3;
  border-color: var(--muted);
}

/* ============================================================
   SECTION FILMS
============================================================ */
.films-section {
  padding: 8rem 0;
}
.films-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 4rem;
}
.film-thumb {
  aspect-ratio: 16/9;
  background: var(--dark-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.film-thumb .thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.4s;
}
.film-thumb:hover .thumb-img {
  opacity: 0.5;
}
.play-btn {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(201, 169, 110, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}
.film-thumb:hover .play-btn {
  background: var(--gold);
  border-color: var(--gold);
}
.film-info {
  margin-top: 1.5rem;
}
.film-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 0.3rem;
}
.film-info p {
  font-size: 0.8rem;
  color: var(--muted);
}
.film-specs {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}
.film-specs span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.film-specs span::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}
.films-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}
.film-item {
  background: var(--dark);
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
}
.film-item:hover {
  background: var(--dark-3);
}
.film-item-thumb {
  width: 72px;
  height: 48px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.film-item-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.mini-play {
  font-size: 0.7rem;
  color: var(--gold);
  position: relative;
  z-index: 2;
}
.film-item-info {
  flex: 1;
}
.film-item-info h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 300;
}
.film-item-info p {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.15rem;
}
.film-duration {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  flex-shrink: 0;
}

/* MODAL VIDÉO */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 999;
  align-items: center;
  justify-content: center;
}
.video-modal.open {
  display: flex;
}
.modal-inner {
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16/9;
}
.modal-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.modal-close:hover {
  opacity: 1;
}

/* ============================================================
   À PROPOS
============================================================ */
.about-section {
  padding: 8rem 0;
  background: var(--dark-2);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-text p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 2.5rem;
}
.stat {
  background: var(--dark-2);
  padding: 2rem 1.5rem;
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
  display: block;
}
.about-photo {
  position: relative;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid var(--border);
  display: block;
}
.about-photo.no-photo::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--dark-3);
  border: 1px solid var(--border);
}
.about-tag {
  position: absolute;
  bottom: -1.2rem;
  right: -1.2rem;
  background: var(--dark-4);
  border: 1px solid var(--border);
  padding: 1rem 1.4rem;
}
.about-tag span {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}
.about-tag strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold);
}

/* ============================================================
   PROCESSUS
============================================================ */
.process-section {
  padding: 8rem 0;
}
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 4rem;
  background: var(--border);
}
.step {
  background: var(--dark);
  padding: 2.5rem 2rem;
}
.step-arrow {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0.5rem;
  color: var(--gold);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}
.step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}
.step p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ============================================================
   TARIFS
============================================================ */
.pricing-section {
  padding: 8rem 0;
  background: var(--dark-2);
}
.pricing-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.8rem;
}
.pricing-note em {
  color: var(--gold);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.price-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  padding: 3rem 2.5rem;
  position: relative;
  transition: border-color 0.3s;
}
.price-card:hover {
  border-color: rgba(201, 169, 110, 0.5);
}
.price-card.featured {
  border-color: var(--gold);
  background: var(--dark-4);
}
.featured-label {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 1.4rem;
  white-space: nowrap;
  font-weight: 400;
}
.price-tier {
  font-size: 0.67rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.price-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
.price-amounts {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}
.price-original {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--muted);
  text-decoration: line-through;
}
.price-now {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.price-sub {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.2rem;
  margin-bottom: 1rem;
}
.price-badge {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  margin-bottom: 2rem;
}
.features {
  list-style: none;
  margin-bottom: 2.5rem;
}
.features li {
  font-size: 0.84rem;
  color: var(--muted);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.4;
}
.features li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}
.features li strong {
  color: var(--text);
  font-weight: 400;
}
.btn-card {
  display: block;
  width: 100%;
  padding: 0.9rem;
  text-align: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: none;
  font-family: "Outfit", sans-serif;
  font-size: 0.73rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-card:hover,
.price-card.featured .btn-card {
  background: var(--gold);
  color: var(--dark);
}
.slots-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2rem;
}
.slots-note strong {
  color: var(--gold);
}

/* ============================================================
   CONTACT / FORMULAIRE
============================================================ */
.contact-section {
  padding: 8rem 0;
}
.form-wrap {
  max-width: 780px;
  margin: 3.5rem auto 0;
}
.promo-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  padding: 0.9rem 1.2rem;
  margin-bottom: 2.5rem;
}
.promo-bar p {
  font-size: 0.8rem;
  color: var(--muted);
}
.promo-bar strong {
  color: var(--gold);
}

/* Steps nav */
.steps-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
}
.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.dot-num {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--muted);
  transition: all 0.3s;
}
.dot-label {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.step-dot.active .dot-num {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.step-dot.active .dot-label {
  color: var(--gold);
}
.step-dot.done .dot-num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.step-line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--border);
  margin-bottom: 1.3rem;
  transition: background 0.3s;
}
.step-line.done {
  background: var(--gold);
}

/* Form steps */
.form-step {
  display: none;
  animation: fadeIn 0.35s ease;
}
.form-step.active {
  display: block;
}
.step-title {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 0.5rem;
}
.field-full {
  grid-column: 1 / -1;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.field label {
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.req {
  color: var(--gold);
}
.field input,
.field select,
.field textarea {
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 1rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
  opacity: 0.55;
}
.field select option {
  background: var(--dark-3);
  color: var(--text);
}

/* Radio & checkbox */
.radio-group,
.check-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.radio-opt,
.check-opt {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 0.83rem;
  color: var(--muted);
  transition: all 0.3s;
  position: relative;
}
.radio-opt input,
.check-opt input {
  position: absolute;
  opacity: 0;
}
.radio-opt::before,
.check-opt::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s;
}
.check-opt::before {
  border-radius: 0;
}
.radio-opt:has(input:checked),
.check-opt:has(input:checked) {
  border-color: var(--gold);
  color: var(--text);
}
.radio-opt:has(input:checked)::before,
.check-opt:has(input:checked)::before {
  background: var(--gold);
  border-color: var(--gold);
}

/* Boutons du formulaire */
.btn-row {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
}
.btn-prev {
  padding: 0.85rem 2rem;
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-prev:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-next {
  padding: 0.85rem 2.5rem;
  background: var(--gold);
  color: var(--dark);
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-weight: 400;
  transition: opacity 0.3s;
}
.btn-next:hover {
  opacity: 0.85;
}
.btn-submit {
  padding: 0.85rem 2.5rem;
  background: var(--gold);
  color: var(--dark);
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-weight: 400;
  transition: opacity 0.3s;
}
.btn-submit:hover {
  opacity: 0.85;
}

/* Confirmation */
.form-success {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeIn 0.5s ease;
}
.form-success.show {
  display: block;
}
.success-icon {
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 1.4rem;
  color: var(--gold);
}
.form-success h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.form-success h3 em {
  font-style: italic;
  color: var(--gold);
}
.form-success p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.9;
  margin-top: 1.5rem;
}
.form-success strong {
  color: var(--gold);
  font-weight: 400;
}

/* Infos contact */
.contact-info {
  display: flex;
  gap: 20rem;
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  justify-content: center;
}
.ci-label {
  font-size: 0.63rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.4rem;
}
.ci-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--gold);
  text-decoration: none;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  padding: 2.5rem 4rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-sep {
  color: var(--border);
}
.footer-copy {
  font-size: 0.7rem;
  color: var(--muted);
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}
.footer-copy {
  font-size: 0.7rem;
  color: var(--muted);
}
.footer-insta {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  transition: color 0.3s;
}
.footer-insta:hover {
  color: var(--gold);
}

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}
@keyframes scrollDown {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 4rem;
}
.pricing-left h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.pricing-left h3 em {
  font-style: italic;
  color: var(--gold);
}
.pricing-left p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.pricing-quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin-top: 2rem;
}
.pricing-quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  font-style: italic;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  #navbar {
    padding: 1.2rem 1.5rem;
  }
  .nav-logo img {
    height: 18px;
  }
  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .nav-links {
    display: none;
  }
  .films-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-photo {
    display: none;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .step-arrow {
    display: none;
  }
  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
  }
  .urgency-banner {
    flex-direction: column;
    padding: 1.5rem;
  }
  .fields-grid {
    grid-template-columns: 1fr;
  }
  .radio-group,
  .check-group {
    grid-template-columns: 1fr;
  }
  .field-full {
    grid-column: 1;
  }
  footer {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
  }
  .ci-item {
    text-align: center;
  }
}
