/* ========================================
   MIEUX-ÊTRE CSILA — Style Premium 2025
   ======================================== */

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

/* ---- Variables ---- */
:root {
  --beige:        #f7f1e8;
  --beige-deep:   #ede4d7;
  --beige-mid:    #f0e9dc;
  --gold:         #c8a96e;
  --gold-light:   #dfc08a;
  --gold-dark:    #a07840;
  --gold-pale:    #f0e4cc;
  --noir:         #17130f;
  --noir-soft:    #2a2218;
  --white:        #fefcf8;
  --text-main:    #2a2218;
  --text-light:   #7a6f62;
  --radius:       4px;
  --shadow:       0 4px 40px rgba(30,20,10,0.07);
  --shadow-hover: 0 12px 60px rgba(30,20,10,0.13);
  --transition:   all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-height:   82px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--beige);
  color: var(--text-main);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ==============================
   NAVIGATION
   ============================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(247, 241, 232, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,169,110,0.2);
  transition: var(--transition);
}
.nav.scrolled {
  box-shadow: 0 2px 30px rgba(30,20,10,0.09);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}
.nav-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-text .brand-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--noir-soft);
  letter-spacing: 0.06em;
}
.nav-logo-text .brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links a {
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-main);
  padding: 0.5rem 0.9rem;
  border-radius: 2px;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after { left: 0.9rem; right: 0.9rem; }
.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 40px !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.16em !important;
  font-weight: 500 !important;
  transition: var(--transition) !important;
  box-shadow: 0 3px 20px rgba(200,169,110,0.35);
  margin-left: 0.75rem;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  box-shadow: 0 6px 28px rgba(200,169,110,0.42) !important;
  transform: translateY(-1px) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--noir-soft);
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0; bottom: 0;
  background: var(--beige);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 2rem;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--text-main);
  padding: 0.5rem 1.5rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
  text-align: center;
}
.mobile-menu a:hover { color: var(--gold-dark); }
.mobile-divider {
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
  margin: 0.4rem 0;
}
.mobile-menu .mobile-cta {
  margin-top: 1.5rem;
  background: var(--gold) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem !important;
  border-radius: 40px;
  box-shadow: 0 4px 24px rgba(200,169,110,0.3);
}

/* ==============================
   PROGRESS BAR
   ============================== */
.scroll-progress {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  height: 2px;
  background: transparent;
  z-index: 999;
}
.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  width: 0%;
  transition: width 0.1s linear;
}

/* ==============================
   PAGE WRAPPER
   ============================== */
.page-wrapper { padding-top: var(--nav-height); }

/* ==============================
   HERO — Logo + Photo visibles dès l'arrivée
   ============================== */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 4rem 4rem 4rem;
  gap: 5rem;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 42%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(200,169,110,0.08), transparent 70%);
  pointer-events: none;
}
.hero-text { max-width: 600px; position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--noir-soft);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 300;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.75rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-badges {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(200,169,110,0.18);
}
.hero-badge { display: flex; flex-direction: column; gap: 0.25rem; }
.hero-badge strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gold-dark);
  line-height: 1;
}
.hero-badge span {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-light);
}

/* Hero Visual — photo + logo superposé */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
}
/* Cadre décoratif derrière la photo */
.hero-img-wrapper::before {
  content: '';
  position: absolute;
  top: 24px; right: -24px;
  bottom: -24px; left: 24px;
  border: none;
  z-index: 0;
}
.hero-portrait {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  object-position: center 8%;
  aspect-ratio: 3/4;
  position: relative;
  z-index: 1;
  filter: none;
  box-shadow: 0 20px 80px rgba(30,20,10,0.12);
}
/* Logo superposé en bas de la photo */
.hero-logo-badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  z-index: 3;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--beige);
  border: 2px solid rgba(200,169,110,0.3);
  box-shadow: 0 8px 32px rgba(30,20,10,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.hero-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* ==============================
   BANDEAU CLARIFICATION
   ============================== */
.clarity-band {
  background: var(--noir-soft);
  padding: 1.25rem 2rem;
}
.clarity-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  text-align: center;
}
.clarity-band p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  letter-spacing: 0.03em;
}
.clarity-band strong { color: var(--gold-light); font-weight: 400; }
.clarity-dot { color: var(--gold); font-size: 0.5rem; }

/* ==============================
   SECTIONS
   ============================== */
.section { padding: 7rem 2rem; }
.section-alt { background: var(--white); }
.section-inner { max-width: 1240px; margin: 0 auto; }

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-label::before { content: '✦'; font-size: 0.45rem; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--noir-soft);
  margin-bottom: 1rem;
  max-width: 720px;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: 4rem;
  font-weight: 300;
}
.divider-gold {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0 2.5rem;
}

/* ==============================
   BOUTONS
   ============================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 1rem 2.75rem;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 28px rgba(200,169,110,0.4);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(200,169,110,0.45);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-main);
  padding: 1rem 2rem;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(200,169,110,0.4);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
  background: rgba(200,169,110,0.04);
}

/* ==============================
   CARDS SERVICES
   ============================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--beige);
  border: 1px solid rgba(200,169,110,0.15);
  border-radius: 8px;
  padding: 2.75rem 2.25rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.section-alt .service-card { background: var(--white); }
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
  border-color: rgba(200,169,110,0.28);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon { font-size: 2.2rem; margin-bottom: 1.5rem; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--noir-soft);
  margin-bottom: 0.85rem;
}
.service-card p { font-size: 0.87rem; color: var(--text-light); line-height: 1.75; margin-bottom: 1.25rem; }
.service-duration {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-duration::before { content: '—'; opacity: 0.45; }

/* ==============================
   ABOUT / QUI SUIS-JE
   ============================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: 4px;
  width: 100%;
  max-width: 460px;
  object-fit: cover;
  object-position: center 8%;
  aspect-ratio: 3/4;
  filter: sepia(5%) saturate(92%);
  box-shadow: 0 20px 70px rgba(30,20,10,0.12);
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -22px; right: -22px;
  width: 65%; height: 65%;
  border: 1px solid rgba(200,169,110,0.22);
  border-radius: 4px;
  z-index: -1;
}
.about-quote {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-dark);
  line-height: 1.5;
  margin: 2rem 0;
  padding-left: 1.75rem;
  border-left: 2px solid rgba(200,169,110,0.35);
}
.about-text p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border: 1px solid rgba(200,169,110,0.35);
  border-radius: 20px;
  color: var(--gold-dark);
  background: rgba(200,169,110,0.04);
}

/* ==============================
   HYPNOSE SECTION
   ============================== */
.hypnose-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hypnose-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.hypnose-feature-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(200,169,110,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hypnose-feature-text h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--noir-soft);
  margin-bottom: 0.3rem;
}
.hypnose-feature-text p { font-size: 0.87rem; color: var(--text-light); line-height: 1.75; }
.hypnose-card {
  background: var(--noir-soft);
  border-radius: 16px;
  padding: 3.5rem 2.75rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hypnose-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.12), transparent 65%);
}
.hypnose-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1.25rem;
  color: var(--gold-light);
}
.hypnose-card p { font-size: 0.9rem; line-height: 1.85; opacity: 0.75; margin-bottom: 2rem; }
.hypnose-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.hypnose-price span { font-size: 1rem; font-family: var(--font-body); opacity: 0.55; }
.hypnose-modes { display: flex; gap: 0.75rem; margin: 1.5rem 0; flex-wrap: wrap; }
.mode-badge {
  padding: 0.4rem 1rem;
  border: 1px solid rgba(200,169,110,0.28);
  border-radius: 20px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  text-transform: uppercase;
}

/* ==============================
   ENTREPRISES
   ============================== */
.entreprises-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.entreprise-card {
  border: 1px solid rgba(200,169,110,0.18);
  border-radius: 8px;
  padding: 2.75rem 2.25rem;
  background: var(--beige);
  transition: var(--transition);
}
.section-alt .entreprise-card { background: var(--white); }
.entreprise-card:hover {
  border-color: rgba(200,169,110,0.4);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.entreprise-card .icon { font-size: 2.4rem; margin-bottom: 1.25rem; }
.entreprise-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--noir-soft);
  margin-bottom: 0.75rem;
}
.entreprise-card p { font-size: 0.87rem; color: var(--text-light); line-height: 1.75; }
.entreprise-card ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.entreprise-card ul li {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  gap: 0.5rem;
}

/* ==============================
   TARIFS
   ============================== */
.tarifs-wrapper { display: flex; justify-content: center; margin-top: 3rem; }
.tarif-card {
  background: var(--noir-soft);
  color: var(--white);
  border-radius: 20px;
  padding: 4rem;
  text-align: center;
  max-width: 540px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.tarif-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(200,169,110,0.1), transparent 55%);
}
.tarif-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.tarif-price {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.tarif-price sup { font-size: 2.2rem; vertical-align: top; margin-top: 0.8rem; }
.tarif-period {
  font-size: 0.82rem;
  opacity: 0.45;
  font-weight: 300;
  margin-bottom: 2.5rem;
  letter-spacing: 0.1em;
}
.tarif-features { display: flex; flex-direction: column; gap: 0.9rem; text-align: left; margin-bottom: 2.5rem; }
.tarif-feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.88rem;
  opacity: 0.8;
}
.tarif-feature::before { content: '✦'; color: var(--gold); font-size: 0.45rem; flex-shrink: 0; }
.tarif-payments { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.payment-badge {
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(200,169,110,0.22);
  border-radius: 20px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  text-transform: uppercase;
}

/* ==============================
   FAQ
   ============================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(200,169,110,0.15); overflow: hidden; }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.6rem 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 400;
  color: var(--noir-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  border: 1px solid rgba(200,169,110,0.38);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--gold-dark);
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  transform: rotate(45deg);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-answer-inner {
  padding-bottom: 1.6rem;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.85;
}

/* ==============================
   CONTACT
   ============================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--noir-soft);
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--gold-dark);
}
.contact-detail-text strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
  font-weight: 400;
}
.contact-detail-text span { font-size: 0.95rem; color: var(--text-main); }
.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200,169,110,0.1);
}
.form-group { margin-bottom: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.55rem;
  font-weight: 400;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 6px;
  background: var(--beige);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.09);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  accent-color: var(--gold-dark);
  margin-top: 2px;
}
.form-checkbox label { font-size: 0.8rem; color: var(--text-light); line-height: 1.65; }
.form-checkbox a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.form-submit { width: 100%; justify-content: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem;
  background: rgba(200,169,110,0.07);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 12px;
  margin-top: 1rem;
}
.form-success.show { display: block; }
.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.form-success p { font-size: 0.88rem; color: var(--text-light); }

/* ==============================
   PAGE HERO (pages intérieures)
   ============================== */
.page-hero {
  background: var(--beige-mid);
  padding: 6rem 2rem 5rem;
  text-align: center;
  border-bottom: 1px solid rgba(200,169,110,0.15);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 100%;
  background: radial-gradient(ellipse at top, rgba(200,169,110,0.08), transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero .section-label { justify-content: center; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--noir-soft);
  margin-bottom: 1.25rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold-dark); }
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.82;
  max-width: 560px;
  margin: 0 auto;
}

/* ==============================
   FOOTER
   ============================== */
footer {
  background: var(--noir);
  color: rgba(255,255,255,0.65);
  padding: 6rem 2rem 2.5rem;
}
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2.5rem;
}
.footer-brand img { height: 58px; margin-bottom: 1.25rem; opacity: 0.88; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; opacity: 0.6; max-width: 300px; }
.footer-col h4 {
  font-size: 0.67rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
}
.footer-col ul li a:hover { opacity: 1; color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.76rem; opacity: 0.38; }
.footer-legal { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer-legal a { font-size: 0.76rem; opacity: 0.38; transition: opacity 0.2s; }
.footer-legal a:hover { opacity: 0.85; }

/* ==============================
   LEGAL PAGES
   ============================== */
.legal-page { padding: 5rem 2rem; max-width: 920px; margin: 0 auto; }
.legal-page h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: var(--noir-soft);
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  margin: 2.75rem 0 1rem;
  color: var(--noir-soft);
}
.legal-page h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin: 1.75rem 0 0.75rem;
  color: var(--text-main);
}
.legal-page p, .legal-page li {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 0.75rem;
}
.legal-page ul { padding-left: 1.5rem; list-style: disc; }
.legal-page a { color: var(--gold-dark); }
.legal-date {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 2rem;
}
.legal-separator { border: none; border-top: 1px solid rgba(200,169,110,0.15); margin: 3rem 0; }

/* ==============================
   ANIMATIONS
   ============================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding: 5rem 2.5rem 4rem; gap: 3.5rem; }
  .hero-text { max-width: 100%; }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { margin: 0 auto 2.75rem; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-img-wrapper { max-width: 360px; margin: 0 auto; }
  .hero-logo-badge { width: 110px; height: 110px; bottom: -20px; left: 50%; transform: translateX(-50%); }
  .about-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-img-wrap img { max-width: 400px; margin: 0 auto; }
  .hypnose-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  :root { --nav-height: 70px; }
  .section { padding: 5rem 1.5rem; }
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .entreprises-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .tarif-card { padding: 2.75rem 2rem; }
  .contact-form { padding: 2rem; }
  .legal-page { padding: 3.5rem 1.5rem; }
}
@media (max-width: 480px) {
  .hero-img-wrapper { max-width: 280px; }
  .tarif-price { font-size: 4.5rem; }
  .hero h1 { font-size: 2.6rem; }
}

/* ==============================
   QUESTIONNAIRE SANTÉ
   ============================== */
.questionnaire-section {
  background: var(--white);
  border-radius: 14px;
  padding: 2.75rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 20px rgba(30,20,10,0.05);
  border: 1px solid rgba(200,169,110,0.1);
}
.questionnaire-section h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--noir-soft);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.questionnaire-section p.section-desc {
  font-size: 0.83rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.75;
  border-bottom: 1px solid rgba(200,169,110,0.12);
  padding-bottom: 1.25rem;
}
.q-item { margin-bottom: 1.75rem; }
.q-item label.q-label {
  display: block;
  font-size: 0.88rem;
  color: var(--text-main);
  margin-bottom: 0.65rem;
  font-weight: 400;
  line-height: 1.5;
}
.radio-group { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 0.5rem; }
.radio-option { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.radio-option input[type="radio"] { accent-color: var(--gold-dark); width: 16px; height: 16px; }
.radio-option span { font-size: 0.87rem; color: var(--text-main); }
.q-note { margin-top: 0.5rem; font-size: 0.77rem; color: var(--text-light); font-style: italic; }
.consent-final {
  background: var(--noir-soft);
  color: var(--white);
  border-radius: 14px;
  padding: 3rem;
  margin-top: 2rem;
}
.consent-final h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.consent-check {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.9rem;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  border: 1px solid rgba(200,169,110,0.12);
}
.consent-check input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.consent-check label { font-size: 0.83rem; color: rgba(255,255,255,0.78); line-height: 1.65; }
.consent-check label a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.signature-area { margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.signature-field label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.5rem;
}
.signature-field input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,169,110,0.22);
  border-radius: 6px;
  color: white;
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.signature-field input:focus { outline: none; border-color: var(--gold); }
.form-success-dark {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(200,169,110,0.09);
  border: 1px solid rgba(200,169,110,0.28);
  border-radius: 10px;
  margin-top: 1rem;
}
.form-success-dark.show { display: block; }
.form-success-dark h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.form-success-dark p { font-size: 0.87rem; color: rgba(255,255,255,0.65); }
@media (max-width: 600px) {
  .signature-area { grid-template-columns: 1fr; }
  .questionnaire-section { padding: 2rem; }
  .consent-final { padding: 2rem; }
}

/* ==============================
   ICÔNES SVG
   ============================== */
.service-icon-svg {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,169,110,0.08);
  border-radius: 50%;
  padding: 6px;
  transition: var(--transition);
}
.service-card:hover .service-icon-svg,
.entreprise-card:hover .service-icon-svg {
  background: rgba(200,169,110,0.16);
  transform: scale(1.08);
}
.hypnose-feature-icon svg { width: 22px; height: 22px; }

/* ==============================
   BON CADEAU
   ============================== */
.bon-cadeau {
  background: var(--noir-soft);
  border-radius: 16px;
  padding: 3rem;
  max-width: 680px;
  margin: 3rem auto 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(200,169,110,0.2);
}
.bon-cadeau::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(200,169,110,0.12), transparent 55%);
  pointer-events: none;
}
.bon-cadeau-border {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 10px;
  pointer-events: none;
}
.bon-cadeau h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  position: relative;
}
.bon-cadeau p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
}
.bon-cadeau-montant {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  position: relative;
}
.montant-badge {
  background: rgba(200,169,110,0.15);
  border: 1px solid rgba(200,169,110,0.35);
  border-radius: 40px;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-light);
  cursor: pointer;
  transition: var(--transition);
}
.montant-badge:hover, .montant-badge.selected {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}
.bon-cadeau-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
}
.bon-cadeau-form input, .bon-cadeau-form select, .bon-cadeau-form textarea {
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(200,169,110,0.22);
  border-radius: 6px;
  color: white;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  -webkit-appearance: none;
}
.bon-cadeau-form input::placeholder,
.bon-cadeau-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.bon-cadeau-form input:focus,
.bon-cadeau-form textarea:focus { border-color: var(--gold); }
.bon-cadeau-form select option { background: var(--noir-soft); color: white; }

/* ==============================
   NAVIGATION MOBILE AMÉLIORÉE
   ============================== */
@media (max-width: 768px) {
  .nav-inner { padding: 0 1.25rem; }
  .nav-logo img { height: 42px; }
  .nav-logo-text .brand-name { font-size: 1rem; }
  .nav-logo-text .brand-sub { display: none; }
  .mobile-menu { padding: 1.5rem; gap: 0.2rem; }
  .mobile-menu a { font-size: 1.6rem; padding: 0.4rem 1rem; }
}

/* ==============================
   RESPONSIVE GLOBAL AMÉLIORÉ
   ============================== */
@media (max-width: 480px) {
  .section { padding: 3.5rem 1.25rem; }
  .hero { padding: 3rem 1.25rem 3rem; }
  .page-hero { padding: 4rem 1.25rem 3rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 2rem 1.5rem; }
  .about-grid { gap: 2.5rem; }
  .hypnose-inner { gap: 2rem; }
  .tarif-card { padding: 2.5rem 1.5rem; }
  .contact-form { padding: 1.5rem; }
  .legal-page { padding: 3rem 1.25rem; }
  .footer-grid { gap: 2rem; }
  .hero h1 { font-size: 2.3rem; }
  .section-title { font-size: 2rem; }
  .bon-cadeau { padding: 2rem 1.5rem; }
  .montant-badge { font-size: 1.1rem; padding: 0.5rem 1.1rem; }
}
