@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Raleway:wght@300;400;500;600&display=swap');

/* ═══════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════ */
:root {
  --or:        #c9a84c;
  --or-clair:  #e8c97a;
  --or-sombre: #8a6820;
  --noir:      #0d0d0d;
  --noir-2:    #151515;
  --noir-3:    #1e1e1e;
  --noir-4:    #2a2a2a;
  --gris:      #b8b0a4;
  --gris-clair:#e8e0d4;
  --blanc:     #f5f0e8;
  --rouge:     #9b2335;

  --font-titre: 'Cormorant Garamond', Georgia, serif;
  --font-corps: 'Raleway', sans-serif;

  --max:  1080px;
  --ray:  2px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--noir);
  color: #e0d8cc;
  font-family: var(--font-corps);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  min-height: 100vh;
}

a { color: var(--or); text-decoration: none; transition: color .2s; }
a:hover { color: var(--or-clair); text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

/* ═══════════════════════════════════════
   UTILITAIRES
═══════════════════════════════════════ */
.wrapper { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

.titre-section {
  font-family: var(--font-titre);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 300;
  color: var(--or);
  letter-spacing: .04em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.sous-titre {
  font-family: var(--font-corps);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--or-sombre);
  margin-bottom: 16px;
}

.sep-or {
  width: 48px;
  height: 1px;
  background: var(--or);
  margin: 16px 0;
}

.sep-or.centre { margin: 16px auto; }

.btn-or {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid var(--or);
  color: var(--or);
  font-family: var(--font-corps);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, color .25s;
  cursor: pointer;
  background: transparent;
}
.btn-or:hover {
  background: var(--or);
  color: var(--noir);
  text-decoration: none;
}

/* ═══════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════ */
.site-header {
  background: var(--noir);
  border-bottom: 1px solid #2a2a2a;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-logo img {
  height: 36px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.site-nav a {
  font-family: var(--font-corps);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gris-clair);
  transition: color .2s;
}
.site-nav a:hover,
.site-nav a.actif { color: var(--or); text-decoration: none; }

/* burger mobile */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--or);
  transition: all .3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--noir-2);
  border-top: 1px solid #2a2a2a;
  padding: 16px 20px 20px;
  gap: 14px;
}
.nav-mobile a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gris-clair);
}
.nav-mobile a:hover { color: var(--or); }
.nav-mobile.open { display: flex; }

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

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: var(--noir-2);
  border-top: 1px solid #2a2a2a;
  padding: 40px 20px 28px;
  text-align: center;
}

.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 32px; width: auto; margin: 0 auto; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 20px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-links a { color: var(--gris); }
.footer-links a:hover { color: var(--or); text-decoration: none; }

.footer-copy {
  font-size: 11px;
  color: #555;
  margin-top: 8px;
}

/* ═══════════════════════════════════════
   PAGE : ACCUEIL
═══════════════════════════════════════ */

/* Hero */
.hero {
  background: var(--noir-2);
  border-bottom: 1px solid #2a2a2a;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  min-height: 520px;
}

/* Colonne gauche : inscription */
.hero-gauche {
  flex: 1 1 0;
  padding: 48px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  min-height: 520px;
}

.hero-gauche::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--or-sombre) 40%, var(--or-sombre) 60%, transparent);
}

.hero-kicker {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--or-sombre);
  margin-bottom: 14px;
}

.hero-titre {
  font-family: var(--font-titre);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 300;
  color: #f0ece4;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-titre em {
  font-style: italic;
  color: var(--or);
}

.hero-accroche {
  font-size: 13px;
  color: #c8c0b4;
  margin-bottom: 28px;
  max-width: 380px;
  line-height: 1.7;
}

.hero-widget {
  margin-bottom: 20px;
  min-height: 260px;
}

.hero-droite {
  flex: 0 0 400px;
  position: relative;
  overflow: hidden;
}

.hero-droite img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

/* Overlay dégradé sur la photo */
.hero-droite::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--noir-2) 0%, transparent 30%);
  z-index: 1;
  pointer-events: none;
}

/* Chiffres clés */
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 0;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #2a2a2a;
}

.stat-item { text-align: left; }
.stat-nb {
  font-family: var(--font-titre);
  font-size: 28px;
  font-weight: 600;
  color: var(--or);
  line-height: 1;
}
.stat-lb {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #b8b0a4;
  margin-top: 2px;
}

/* Avantages */
.bloc-avantages {
  background: var(--noir-3);
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  padding: 56px 20px;
}

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

.avantage-item { text-align: center; }

.avantage-icone {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
  filter: sepia(1) saturate(3) hue-rotate(5deg);
}

.avantage-titre {
  font-family: var(--font-titre);
  font-size: 20px;
  font-weight: 400;
  color: var(--or);
  margin-bottom: 8px;
}

.avantage-texte {
  font-size: 13px;
  color: #c8c0b4;
  line-height: 1.7;
}

/* Témoignage vedette */
.bloc-temoignage-vedette {
  padding: 64px 20px;
  background: var(--noir-2);
  border-bottom: 1px solid #2a2a2a;
  text-align: center;
}

.temoignage-citation {
  font-family: var(--font-titre);
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: #f0ece4;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.temoignage-citation::before { content: '\201C'; color: var(--or); font-size: 1.3em; }
.temoignage-citation::after  { content: '\201D'; color: var(--or); font-size: 1.3em; }

.temoignage-auteur {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--or-sombre);
}

/* Section SEO */
.bloc-seo {
  padding: 56px 20px;
  background: var(--noir);
}

.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--max);
  margin: 0 auto;
}

.seo-bloc h2 {
  font-family: var(--font-titre);
  font-size: 22px;
  font-weight: 400;
  color: var(--or);
  margin-bottom: 12px;
}

.seo-bloc p {
  font-size: 13px;
  color: #c0b8ac;
  line-height: 1.75;
}

/* ═══════════════════════════════════════
   PAGE : MODE D'EMPLOI
═══════════════════════════════════════ */
.page-hero {
  background: var(--noir-2);
  border-bottom: 1px solid #2a2a2a;
  padding: 56px 20px 48px;
  text-align: center;
}

.etapes {
  padding: 64px 20px;
  background: var(--noir);
}

.etapes-liste {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.etape {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid #1e1e1e;
}
.etape:last-child { border-bottom: none; }

.etape-nb {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--or-sombre);
  color: var(--or);
  font-family: var(--font-titre);
  font-size: 22px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.etape-titre {
  font-family: var(--font-titre);
  font-size: 20px;
  font-weight: 400;
  color: #f0ece4;
  margin-bottom: 6px;
}

.etape-texte {
  font-size: 13px;
  color: #c8c0b4;
  line-height: 1.75;
}

.bloc-cta {
  background: var(--noir-3);
  border-top: 1px solid #2a2a2a;
  padding: 56px 20px;
  text-align: center;
}

/* ═══════════════════════════════════════
   PAGE : TÉMOIGNAGES
═══════════════════════════════════════ */
.temoignages-grille {
  padding: 56px 20px;
  background: var(--noir);
}

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.temoignage-card {
  background: var(--noir-3);
  border: 1px solid #2a2a2a;
  padding: 28px 24px;
  position: relative;
}

.temoignage-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; left: 18px;
  font-family: var(--font-titre);
  font-size: 48px;
  color: var(--or-sombre);
  line-height: 1;
  opacity: .5;
}

.temoignage-card blockquote {
  font-family: var(--font-titre);
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  color: #f0ece4;
  line-height: 1.65;
  margin-bottom: 16px;
  padding-top: 20px;
}

.temoignage-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.temoignage-pseudo {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--or);
}

.temoignage-ville {
  font-size: 11px;
  color: var(--gris);
}

.etoiles { color: var(--or); font-size: 12px; margin-left: auto; }

/* ═══════════════════════════════════════
   PAGE : CGU
═══════════════════════════════════════ */
.cgu-contenu {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 20px;
}

.cgu-contenu h2 {
  font-family: var(--font-titre);
  font-size: 20px;
  font-weight: 400;
  color: var(--or);
  margin: 32px 0 10px;
}

.cgu-contenu h2:first-child { margin-top: 0; }

.cgu-contenu p {
  font-size: 13px;
  color: #c8c0b4;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 780px) {
  .hero-inner { flex-direction: column; min-height: auto; }
  .hero-gauche { padding: 36px 20px 28px; }
  .hero-gauche::after { display: none; }
  .hero-droite {
    flex: none;
    height: 260px;
    width: 100%;
  }
  .hero-droite::before {
    background: linear-gradient(to bottom, var(--noir-2) 0%, transparent 30%);
  }
  .avantages-grid { grid-template-columns: 1fr; gap: 28px; }
  .seo-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-stats { gap: 18px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 14px; }
  .temoignages-grid { grid-template-columns: 1fr; }
}
