/* ═══════════════════════════════════════════════════════════════
   LIFTING ACUPUNCTURE MARSEILLE — style.css
   Palette : Terre cuite / Orange brûlé / Soie
   Polices : Cormorant Garamond (serif) · Jost (sans)
   ═══════════════════════════════════════════════════════════════ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --orange:     #a14605;   /* orange brûlé — couleur signature */
  --terre:      #C8572A;   /* terre cuite — accents */
  --brun:       #3d1a08;   /* brun sombre — sections foncées */
  --brun-mid:   #7a3a1a;   /* brun moyen */
  --soie:       #FAF0E6;   /* soie — fond clair */
  --ivoire:     #f5ebe4;   /* ivoire — fonds très clairs */
  --papier:     #f7f5f0;   /* papier universel */
  --encre:      #1a1714;   /* encre — texte principal */
  --gris:       #6B6257;   /* gris — texte secondaire */
  --gris-fin:   #a09890;   /* gris très clair */
  --border:     rgba(161,70,5,0.12);
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Jost', system-ui, sans-serif;
  --nav-h:      68px;
  --ambre:      #D4A96A;
}

/* ── Reset & base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--encre);
  background: var(--papier);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(61,26,8,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid rgba(161,70,5,0.25);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 17px; font-weight: 300; letter-spacing: 0.04em;
  color: var(--soie);
}
.nav-logo span { color: rgba(250,240,230,0.45); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(250,240,230,0.65);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--soie); }
.nav-cta {
  background: var(--orange); color: var(--soie) !important;
  padding: 9px 20px; border-radius: 4px;
  font-size: 11px !important; font-weight: 600 !important;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--terre) !important; color: var(--soie) !important; }
.nav-mobile-btn { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-mobile-btn span { display: block; width: 22px; height: 1.5px; background: var(--soie); margin: 5px 0; border-radius: 1px; }
.nav-mobile { display: none; }

/* Bouton RDV visible uniquement sur mobile (caché sur desktop car nav-cta le remplace) */
.nav-cta-sticky {
  display: none;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--soie);
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-cta-sticky:hover { background: var(--terre); color: var(--soie); }

/* ── Hero split (photo gauche / texte droite) ──────────────── */
.hero-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh; padding-top: var(--nav-h);
}
.hero-photo {
  position: relative; overflow: hidden;
  min-height: calc(100vh - var(--nav-h));
}
.hero-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(61,26,8,0.92) 0%,
    rgba(161,70,5,0.38) 55%,
    rgba(161,70,5,0.10) 100%
  );
}
.hero-photo-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 48px 52px; z-index: 2;
}
.hero-photo-label {
  font-size: 9px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(250,240,230,0.5);
  margin-bottom: 14px;
}
.hero-photo-content h1 {
  font-family: var(--serif); font-size: clamp(42px,4.5vw,72px);
  font-weight: 300; color: var(--soie); line-height: 1.05;
  letter-spacing: -0.01em;
}
.hero-photo-content h1 em { font-style: italic; color: rgba(250,240,230,0.6); }
.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 64px;
  background: var(--soie);
  border-left: 0.5px solid rgba(161,70,5,0.1);
}
.hero-text-label {
  font-size: 9px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(161,70,5,0.5);
  margin-bottom: 20px;
}
.hero-text-intro {
  font-family: var(--serif); font-size: clamp(22px,2.5vw,34px);
  font-weight: 300; font-style: italic; color: var(--encre);
  line-height: 1.35; margin-bottom: 24px;
}
.hero-text-body {
  font-size: 15px; color: var(--gris); line-height: 1.8;
  margin-bottom: 32px;
}
.hero-text-meta {
  font-size: 12px; font-weight: 600; color: var(--orange);
  letter-spacing: 0.06em; margin-top: 24px;
  padding-top: 20px; border-top: 0.5px solid rgba(161,70,5,0.12);
}

/* ── Boutons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 13px 24px; border-radius: 4px;
  transition: all 0.2s; cursor: pointer;
}
.btn-primary {
  background: var(--orange); color: var(--soie);
}
.btn-primary:hover { background: var(--terre); }
.btn-outline {
  border: 1px solid rgba(161,70,5,0.35); color: var(--orange);
}
.btn-outline:hover { border-color: var(--orange); background: var(--ivoire); }
.btn-white {
  background: var(--soie); color: var(--brun); font-weight: 600;
}
.btn-white:hover { background: #fff; }
.btn-ghost {
  border: 0.5px solid rgba(250,240,230,0.25); color: var(--soie);
  background: rgba(250,240,230,0.08);
}
.btn-ghost:hover { background: rgba(250,240,230,0.14); }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Sections génériques ───────────────────────────────────── */
.section { padding: 80px 48px; }
.section-narrow { max-width: 760px; margin: 0 auto; }
.container { max-width: 1100px; margin: 0 auto; }
.container-wide { max-width: 1300px; margin: 0 auto; }

.label {
  font-size: 9px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(161,70,5,0.55);
  margin-bottom: 14px; display: block;
}
.label-light { color: rgba(250,240,230,0.4); }

h2.section-title {
  font-family: var(--serif); font-size: clamp(28px,3vw,44px);
  font-weight: 300; color: var(--encre); line-height: 1.15;
  letter-spacing: -0.01em; margin-bottom: 20px;
}
h2.section-title-light { color: var(--soie); }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--soie);
  border: 0.5px solid var(--border);
  border-radius: 8px; padding: 28px;
}
.card-dark {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(250,240,230,0.1);
  border-radius: 8px; padding: 28px;
}
.card-accent { border-left: 2px solid var(--orange); border-radius: 0 8px 8px 0; }

/* ── Avis / citations ──────────────────────────────────────── */
.review-card {
  background: var(--ivoire); border-left: 2px solid var(--terre);
  border-radius: 0 8px 8px 0; padding: 24px 28px;
}
.review-text {
  font-family: var(--serif); font-size: 20px; font-style: italic;
  color: var(--encre); line-height: 1.6; margin-bottom: 10px;
}
.review-author {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange);
}

/* ── Tarifs ────────────────────────────────────────────────── */
.tarif-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0; border-bottom: 0.5px solid var(--border);
}
.tarif-row:first-child { border-top: 0.5px solid var(--border); }
.tarif-label { font-size: 14px; color: var(--gris); }
.tarif-val {
  font-family: var(--serif); font-size: 30px;
  font-weight: 300; color: var(--orange); line-height: 1;
}
.tarif-sub { font-size: 11px; color: var(--gris-fin); margin-top: 3px; }

/* ── Info box ──────────────────────────────────────────────── */
.info-box {
  background: rgba(161,70,5,0.06);
  border-left: 2px solid var(--orange);
  border-radius: 0 8px 8px 0; padding: 18px 22px;
}
.info-box p { font-size: 13px; color: var(--gris); line-height: 1.65; }

/* ── Stats ─────────────────────────────────────────────────── */
.stat-num {
  font-family: var(--serif); font-size: 52px;
  font-weight: 300; color: var(--soie); line-height: 1;
}
.stat-label {
  font-size: 11px; font-weight: 500; color: rgba(250,240,230,0.55);
  margin-top: 6px; letter-spacing: 0.06em;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--brun); padding: 56px 48px 32px;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; padding-bottom: 40px;
  border-bottom: 0.5px solid rgba(250,240,230,0.08);
}
.footer-logo {
  font-family: var(--serif); font-size: 20px; font-weight: 300;
  color: var(--soie); margin-bottom: 14px;
}
.footer-desc { font-size: 13px; color: rgba(250,240,230,0.45); line-height: 1.7; }
.footer-col h4 {
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(250,240,230,0.35);
  margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 13px; color: rgba(250,240,230,0.55);
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--soie); }
.footer-bottom {
  max-width: 1100px; margin: 24px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(250,240,230,0.25);
}
.footer-bottom a { color: rgba(250,240,230,0.35); }

/* ── Fade-in animation ─────────────────────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Classes utilitaires grilles (surchargent les inline styles) */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.grid-2col-portrait {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1300px;
  margin: 0 auto;
}
.grid-2col-tarifs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .nav-cta-sticky { display: inline-flex; align-items: center; }  /* visible sur mobile */
  .nav-mobile.open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--brun); padding: 24px 32px; z-index: 99;
  }
  .nav-mobile a {
    font-size: 13px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(250,240,230,0.7);
    padding: 18px 0; border-bottom: 0.5px solid rgba(250,240,230,0.08);
    display: block;
  }
  .nav { padding: 0 24px; }

  /* Hero */
  .hero-split { grid-template-columns: 1fr; }
  .hero-photo { min-height: 70vw; }
  .hero-text { padding: 40px 24px; }

  /* Sections */
  .section { padding: 52px 20px; }
  .container, .container-wide { padding-left: 20px; padding-right: 20px; }

  /* Grilles 2 colonnes → 1 colonne */
  .grid-2col {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .grid-2col-portrait {
    grid-template-columns: 1fr;
  }
  .grid-2col-tarifs {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Photo Dr Song — taille correcte sur mobile */
  .grid-2col figure img {
    width: 100%;
    height: auto;
    position: relative !important;
    inset: auto !important;
    object-fit: cover;
  }
  .grid-2col figure > div {
    min-height: 0 !important;
    height: auto !important;
  }

  /* Portrait Jérémy — ordre inversé + hauteur raisonnable */
  .grid-2col-portrait > .portrait-photo {
    order: -1;
    min-height: 70vw !important;
    max-height: 480px;
  }
  .grid-2col-portrait > .portrait-text {
    padding: 40px 24px !important;
  }

  /* Pour qui section */
  .pour-qui-grid {
    grid-template-columns: 1fr !important;
  }
  .pour-qui-grid > .pour-qui-photo {
    min-height: 60vw !important;
    max-height: 360px;
    order: -1;
  }
  .pour-qui-grid > .pour-qui-text {
    padding: 40px 24px !important;
  }

  /* Split section histoire */
  .split-col-right-padded {
    padding: 0 !important;
  }

  /* Avant/après */
  .ba-section { grid-template-columns: 1fr !important; }

  /* Stats band */
  .stats-band {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    padding: 36px 24px !important;
  }

  /* Étapes */
  .etapes-grid { grid-template-columns: 1fr !important; }

  /* Avantages */
  .avantages-grid { grid-template-columns: 1fr !important; }

  /* Effets */
  .effets-grid { grid-template-columns: 1fr 1fr !important; }

  /* Avis */
  .avis-grid { grid-template-columns: 1fr !important; }

  /* Contact grid */
  .contact-grid { grid-template-columns: 1fr !important; }
  .contact-left, .contact-right { padding: 40px 24px !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer { padding: 40px 20px 28px; }
  .footer-bottom {
    flex-direction: column; gap: 8px; text-align: center;
    padding-top: 16px;
  }

  /* Boutons */
  .btn-group { flex-direction: column; }
  .btn { justify-content: center; text-align: center; width: 100%; }
}
