/* ============================================================
   Mr Diabyrou — Voyance, médiumité, guidance spirituelle
   Design system : Navy / Or / Ivoire
   ============================================================ */

:root {
  --navy: #0b1229;
  --navy-light: #141c3f;
  --gold: #c6a15b;
  --gold-light: #e3c98a;
  --gold-a11y: #9c7a34; /* variante accessible sur fond clair */
  --ivory: #f7f3ea;
  --ivory-dark: #efe7d6;
  --text-dark: #1a1a1a;
  --text-muted: #5a5a5a;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 18, 41, 0.12);
  --shadow-lg: 0 20px 50px rgba(11, 18, 41, 0.18);
  --max-width: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--ivory);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

p { color: var(--text-muted); }

a { color: var(--gold-a11y); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

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

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--ivory);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.logo span { color: var(--gold-light); }

nav.main-nav {
  display: flex;
  gap: 28px;
}

nav.main-nav a {
  color: var(--ivory);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.88;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--gold-light);
  opacity: 1;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 860px) {
  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-light);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  nav.main-nav.open { max-height: 500px; }
  nav.main-nav a {
    padding: 14px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-toggle { display: block; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(198, 161, 91, 0.4);
}

.btn-ring {
  position: relative;
}
.btn-ring::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: ringPulse 2.4s ease-out infinite;
}
@keyframes ringPulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.18); }
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--ivory);
  color: var(--ivory);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); }

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(ellipse at top right, var(--navy-light), var(--navy) 70%);
  color: var(--ivory);
  padding: 90px 0 70px;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
}
.hero h1 { color: var(--ivory); }
.hero .kicker {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.hero p.lead { color: rgba(247,243,234,0.85); font-size: 1.1rem; }
.hero .cta-row { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
@media (max-width: 860px) { .hero .cta-row { justify-content: center; } }

.hero-visual {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
}
.hero-visual .stat {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--ivory-dark);
}
.hero-visual .stat:last-child { border-bottom: none; }
.hero-visual .stat strong { color: var(--navy); }

/* ---------- Sections ---------- */
section { padding: 70px 0; }
section.alt { background: var(--white); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.section-head .kicker {
  color: var(--gold-a11y);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
  font-weight: 700;
}

/* ---------- Cards / Grid ---------- */
.grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) { .grid { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.card h3 { margin-bottom: 10px; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

/* ---------- Pricing ---------- */
.price-box {
  background: var(--navy);
  color: var(--ivory);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.price-box .amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  color: var(--gold-light);
  font-weight: 700;
  margin: 10px 0;
}
.price-box .amount small { font-size: 1.2rem; color: rgba(247,243,234,0.7); }
.info-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  text-align: left;
}
.info-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--ivory-dark);
  color: var(--text-muted);
}
.info-list li:last-child { border-bottom: none; }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question .icon { color: var(--gold-a11y); font-size: 1.3rem; transition: transform 0.2s ease; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }

/* ---------- List zones (départements) ---------- */
.zone-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
}
.zone-list li {
  background: var(--white);
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--gold);
  font-weight: 600;
  color: var(--navy);
}

/* ---------- Notice / disclaimer ---------- */
.notice {
  background: var(--ivory-dark);
  border-left: 4px solid var(--gold-a11y);
  border-radius: 8px;
  padding: 18px 22px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.placeholder {
  background: #fff3cd;
  border: 1px dashed #c9a227;
  color: #6b5300;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85em;
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy);
  color: rgba(247,243,234,0.75);
  padding: 50px 0 24px;
}
footer.site-footer .container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
}
@media (max-width: 860px) {
  footer.site-footer .container { grid-template-columns: 1fr; text-align: center; }
}
footer.site-footer h4 { color: var(--gold-light); font-size: 1rem; }
footer.site-footer a { color: rgba(247,243,234,0.75); }
footer.site-footer a:hover { color: var(--gold-light); }
.footer-bottom {
  text-align: center;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
}

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 200;
  font-size: 1.6rem;
}
.whatsapp-float:hover { text-decoration: none; transform: scale(1.06); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
