/* ============================================================
   BODY INDUSTRY — Feuille de style principale
   Institut Esthétique Haute Technologie
   Conception : Novia Digital Agency
   ============================================================ */

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

/* === 2. VARIABLES CSS === */
:root {
  /* Banner promo (dynamique via JS) */
  --promo-h: 38px;

  /* Couleurs */
  --white:        #FFFFFF;
  --off-white:    #FAFAF8;
  --cream:        #F6F2EC;
  --cream-light:  #FAF8F4;
  --gold:         #C4956A;
  --gold-dark:    #9D7347;
  --gold-light:   rgba(196, 149, 106, 0.10);
  --gold-border:  rgba(196, 149, 106, 0.30);
  --black:        #1A1A1A;
  --gray-dark:    #4A4A4A;
  --gray:         #6B6B6B;
  --gray-light:   #AAAAAA;
  --border:       #E8E3DC;
  --border-light: #F2EDE6;

  /* Typographie */
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'DM Sans', system-ui, -apple-system, sans-serif;

  /* Espacement */
  --sp-1:  0.5rem;
  --sp-2:  1rem;
  --sp-3:  1.5rem;
  --sp-4:  2rem;
  --sp-5:  3rem;
  --sp-6:  4.5rem;
  --sp-7:  6rem;
  --sp-8:  8rem;

  /* Layout */
  --container-max: 1200px;
  --container-sm:  820px;
  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  /* Ombres */
  --shadow-xs:  0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.10);
  --shadow-gold:0 4px 24px rgba(196,149,106,0.25);

  /* Navigation */
  --nav-h: 72px;

  /* Transitions */
  --ease: 0.25s ease;
  --ease-slow: 0.45s ease;
}

/* === 3. RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--gold); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }
input, textarea, select {
  font-family: var(--font-sans);
  font-size: 1rem;
  outline: none;
}

/* === 4. TYPOGRAPHIE === */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }
h4, h5, h6 { font-family: var(--font-sans); font-weight: 600; line-height: 1.3; }

h1 { font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.05rem, 1.5vw, 1.15rem); }
p  { line-height: 1.75; }

.serif { font-family: var(--font-serif); }
.italic { font-style: italic; }

/* Séparateur doré */
.gold-line {
  display: inline-block;
  width: 48px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* === 5. LAYOUT / CONTAINER === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-3);
}
.container--sm {
  max-width: var(--container-sm);
}

/* Sections */
.section {
  padding: var(--sp-7) 0;
}
.section--sm {
  padding: var(--sp-5) 0;
}
.section--cream {
  background: var(--cream-light);
}
.section--offwhite {
  background: var(--off-white);
}
.section__header {
  text-align: center;
  margin-bottom: var(--sp-6);
}
.section__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}
.section__title {
  margin-bottom: var(--sp-2);
}
.section__subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* Grid */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* === 6. BOUTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--ease);
  white-space: nowrap;
  min-height: 52px;
  cursor: pointer;
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(196,149,106,0.35);
}
.btn--outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--white);
}
.btn--dark {
  background: var(--black);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--gray-dark);
  color: var(--white);
}
.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8rem;
  min-height: 44px;
}

/* === 7. NAVIGATION === */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease);
  height: var(--nav-h);
}
.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-xs);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: var(--sp-3);
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--black);
}
.nav__logo-tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav__links {
  display: none;
  align-items: center;
  gap: var(--sp-1);
}
.nav__links a {
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gray-dark);
  padding: 0.5rem 0.75rem;
  border-radius: 3px;
  transition: color var(--ease), background var(--ease);
}
.nav__links a:hover, .nav__links a.active {
  color: var(--gold);
  background: var(--gold-light);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.nav__phone {
  display: none;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-dark);
  letter-spacing: 0.03em;
}
.nav__phone:hover { color: var(--gold); }

/* Hamburger */
.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0;
  border-radius: 3px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--black);
  transition: all var(--ease);
  border-radius: 2px;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Menu mobile */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 899;
  padding: var(--sp-4) var(--sp-3);
  flex-direction: column;
  gap: var(--sp-1);
  overflow-y: auto;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black);
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border-light);
}
.nav__mobile a:hover { color: var(--gold); border-bottom-color: var(--gold-border); }
.nav__mobile .btn { margin-top: var(--sp-3); width: 100%; justify-content: center; }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__phone { display: flex; align-items: center; gap: 0.4rem; }
  .nav__toggle { display: none; }
}

/* === 8. BANNIÈRE PROMO === */
.promo-banner {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 0.6rem var(--sp-3);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 901;
  transform: translateY(0);
  transition: transform var(--ease);
}
.promo-banner strong { color: var(--gold); }
.promo-banner.hidden { transform: translateY(-100%); }
.promo-banner + .header { top: var(--promo-h); }
.promo-banner.hidden + .header { top: 0; }

/* === 9. HERO === */
.hero {
  padding-top: calc(var(--nav-h) + var(--promo-h) + var(--sp-7));
  padding-bottom: var(--sp-7);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(196,149,106,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,149,106,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
  padding: 0.4rem 0.875rem;
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  background: var(--gold-light);
}
.hero__title {
  color: var(--black);
  margin-bottom: var(--sp-3);
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 520px;
  margin-bottom: var(--sp-5);
  line-height: 1.75;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
}
.hero__stat-value {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--black);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}

/* Hero visual */
.hero__visual {
  position: relative;
}
.hero__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream);
  position: relative;
}
.hero__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__badge-float {
  position: absolute;
  bottom: var(--sp-3);
  left: var(--sp-3);
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--sp-2) var(--sp-3);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.hero__badge-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero__badge-text {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-dark);
  line-height: 1.4;
}

@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: calc(var(--nav-h) + var(--promo-h) + var(--sp-8)); }
}

/* === 10. CARTES SERVICES === */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
  cursor: pointer;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gold-border);
}
.service-card__img {
  aspect-ratio: 16/10;
  background: var(--cream);
  overflow: hidden;
  position: relative;
}
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}
.service-card:hover .service-card__img img { transform: scale(1.04); }

/* Placeholder gradient pour images manquantes */
.service-card__img--epilat { background: linear-gradient(135deg, #F6F2EC 0%, #EDE0D2 100%); }
.service-card__img--cryo   { background: linear-gradient(135deg, #EEF4F8 0%, #D8E8F0 100%); }
.service-card__img--massage{ background: linear-gradient(135deg, #F6F2EC 0%, #E8DDD4 100%); }
.service-card__img--visage { background: linear-gradient(135deg, #F8F4F0 0%, #ECD8CE 100%); }

.service-card__icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  opacity: 0.5;
}
.service-card__body {
  padding: var(--sp-3) var(--sp-4);
}
.service-card__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-1);
}
.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: var(--sp-1);
  color: var(--black);
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: var(--sp-3);
}
.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-2);
  border-top: 1px solid var(--border-light);
}
.service-card__price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold);
}

/* === 11. CARTES AVANTAGES / FEATURES === */
.feature-card {
  padding: var(--sp-4);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  transition: box-shadow var(--ease), border-color var(--ease);
}
.feature-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold-border);
}
.feature-card__icon {
  width: 48px; height: 48px;
  background: var(--gold-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
  color: var(--gold);
}
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card__title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: var(--sp-1);
}
.feature-card__desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
}

/* === 12. PRICING CARDS === */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}
@media (min-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(4, 1fr); }
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  text-align: center;
  transition: all var(--ease);
  position: relative;
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-border);
  transform: translateY(-3px);
}
.pricing-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #FDF9F5 0%, #F9F5EE 100%);
  box-shadow: var(--shadow-gold);
}
.pricing-card__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card__title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: var(--sp-1);
}
.pricing-card__zone {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: var(--sp-3);
}
.pricing-card__price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-bottom: var(--sp-1);
}
.pricing-card__currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 6px;
}
.pricing-card__amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.pricing-card__duration {
  font-size: 0.78rem;
  color: var(--gray-light);
  margin-bottom: var(--sp-3);
}
.pricing-card__list {
  text-align: left;
  margin-bottom: var(--sp-3);
}
.pricing-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-dark);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border-light);
}
.pricing-card__list li:last-child { border-bottom: none; }
.pricing-card__list li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

/* === 13. SECTION CENTRES === */
.centre-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  transition: all var(--ease);
}
.centre-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold-border);
}
.centre-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #FDF9F5 0%, #FAFAF8 100%);
}
.centre-card__city {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: var(--sp-1);
  text-transform: capitalize;
}
.centre-card__addr {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}
.centre-card__addr svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }

/* === 14. TESTIMONIALS === */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
}
.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-2);
  color: #F5C518;
}
.testimonial-card__text {
  font-size: 0.93rem;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: var(--sp-3);
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.testimonial-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--black);
}
.testimonial-card__date {
  font-size: 0.75rem;
  color: var(--gray-light);
}

/* === 15. FAQ === */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) 0;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  transition: color var(--ease);
  min-height: 60px;
}
.faq-btn:hover { color: var(--gold); }
.faq-btn svg {
  flex-shrink: 0;
  transition: transform var(--ease);
  color: var(--gold);
}
.faq-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding-bottom: var(--sp-3);
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.75;
}
.faq-answer.open { display: block; }

/* === 16. FORMULAIRE CONTACT === */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--sp-3);
}
.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-dark);
}
.form-control {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  width: 100%;
  min-height: 52px;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,149,106,0.12);
}
textarea.form-control {
  min-height: 140px;
  resize: vertical;
}
.form-notice {
  font-size: 0.78rem;
  color: var(--gray-light);
  margin-top: var(--sp-2);
}

/* === 17. CTA SECTION === */
.cta-section {
  background: var(--black);
  padding: var(--sp-7) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(196,149,106,0.12) 0%, transparent 60%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section .section__label { color: var(--gold); }
.cta-section h2 { color: var(--white); margin-bottom: var(--sp-2); }
.cta-section p  { color: rgba(255,255,255,0.65); margin-bottom: var(--sp-5); max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-section .btn--gold { margin: 0 auto; }

/* === 18. NEWSLETTER === */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  max-width: 480px;
  margin: var(--sp-4) auto 0;
}
.newsletter-form .form-control { border-radius: var(--radius) var(--radius) 0 0; }
@media (min-width: 500px) {
  .newsletter-form {
    flex-direction: row;
    align-items: stretch;
  }
  .newsletter-form .form-control {
    flex: 1;
    border-radius: var(--radius) 0 0 var(--radius);
    border-right: none;
  }
  .newsletter-form .btn {
    border-radius: 0 var(--radius) var(--radius) 0;
    white-space: nowrap;
    min-width: 160px;
  }
}

/* === 19. FOOTER === */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.8);
  padding: var(--sp-7) 0 var(--sp-4);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-7);
}
@media (min-width: 640px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer__brand .nav__logo-name { color: var(--white); }
.footer__brand .nav__logo-tag  { color: var(--gold); }
.footer__tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-top: var(--sp-2);
  line-height: 1.65;
}
.footer__social {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}
.footer__social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--ease);
}
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,149,106,0.1);
}

.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-3);
}
.footer__links li { margin-bottom: var(--sp-1); }
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--ease);
}
.footer__links a:hover { color: var(--gold); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--sp-2);
}
.footer__contact-item svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.footer__contact-item a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  align-items: center;
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer__bottom a:hover { color: var(--gold); }

@media (min-width: 600px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* === 20. PAGE HERO INTERNE === */
.page-hero {
  padding: calc(var(--nav-h) + var(--promo-h) + var(--sp-6)) 0 var(--sp-6);
  background: var(--cream-light);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,149,106,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--gray-light);
  margin-bottom: var(--sp-3);
}
.page-hero__breadcrumb a:hover { color: var(--gold); }
.page-hero__breadcrumb svg { color: var(--gray-light); }
.page-hero__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}
.page-hero h1 {
  margin-bottom: var(--sp-2);
  color: var(--black);
}
.page-hero__desc {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: var(--sp-5);
}

/* === 21. PROCESSUS / ÉTAPES === */
.step-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  counter-reset: step;
}
@media (min-width: 640px) { .step-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .step-grid { grid-template-columns: repeat(4, 1fr); } }

.step-card {
  padding: var(--sp-4);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  counter-increment: step;
  position: relative;
}
.step-card::before {
  content: "0" counter(step);
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold-border);
  font-weight: 300;
  display: block;
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.step-card__title {
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--black);
  margin-bottom: var(--sp-1);
}
.step-card__desc {
  font-size: 0.85rem;
  color: var(--gray);
}

/* === 22. SECTIONS ALTERNÉES === */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: center;
}
@media (min-width: 900px) {
  .split-section { grid-template-columns: 1fr 1fr; }
  .split-section.reverse > :last-child  { order: -1; }
}
.split-section__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream);
}
.split-section__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.split-section__content .section__label { margin-bottom: var(--sp-2); }
.split-section__content h2 { margin-bottom: var(--sp-2); }
.split-section__content p  { color: var(--gray); margin-bottom: var(--sp-4); }
.split-section__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.split-section__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-dark);
}
.split-section__list li svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

/* === 23. BADGE MÉDECIN AGRÉÉ === */
.trust-bar {
  background: var(--gold-light);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: var(--sp-3) 0;
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4) var(--sp-6);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-dark);
  letter-spacing: 0.03em;
}
.trust-item svg { color: var(--gold); }

/* === 24. ZONES CORPS === */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2);
}
@media (min-width: 640px) { .zones-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .zones-grid { grid-template-columns: repeat(6, 1fr); } }

.zone-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-3) var(--sp-2);
  text-align: center;
  transition: all var(--ease);
  cursor: pointer;
}
.zone-card:hover {
  border-color: var(--gold);
  background: var(--gold-light);
  transform: translateY(-2px);
}
.zone-card__icon {
  font-size: 1.8rem;
  margin-bottom: var(--sp-1);
}
.zone-card__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-dark);
  text-transform: capitalize;
}

/* === 25. MAP EMBED === */
.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/7;
  background: var(--cream);
}
.map-wrapper iframe {
  width: 100%; height: 100%;
  border: none;
}

/* === 26. ANIMATIONS SCROLL === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* === 27. UTILITAIRES === */
.text-center  { text-align: center; }
.text-gold    { color: var(--gold); }
.text-gray    { color: var(--gray); }
.text-sm      { font-size: 0.875rem; }
.text-xs      { font-size: 0.78rem; }
.mt-1 { margin-top: var(--sp-1); }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-3 { margin-bottom: var(--sp-3); }
.mb-4 { margin-bottom: var(--sp-4); }
.flex  { display: flex; align-items: center; gap: var(--sp-2); }
.flex-wrap { flex-wrap: wrap; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* === 28. PAGE CONTACT SPÉCIFIQUE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: start;
}
@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-5);
  position: sticky;
  top: calc(var(--nav-h) + var(--promo-h) + var(--sp-2));
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-info__item:last-child { border-bottom: none; }
.contact-info__icon {
  width: 42px; height: 42px;
  background: var(--gold-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info__text { flex: 1; }
.contact-info__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 3px;
}
.contact-info__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
}
.contact-info__value a:hover { color: var(--gold); }

/* === 29. PAGE MENTIONS LÉGALES === */
.legal-content h2 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  margin: var(--sp-5) 0 var(--sp-2);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border-light);
}
.legal-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content p  {
  font-size: 0.93rem;
  color: var(--gray);
  margin-bottom: var(--sp-2);
  line-height: 1.75;
}
.legal-content ul {
  list-style: disc;
  padding-left: var(--sp-4);
  margin-bottom: var(--sp-2);
}
.legal-content ul li {
  font-size: 0.93rem;
  color: var(--gray);
  margin-bottom: var(--sp-1);
}

/* === 30. PRINT === */
@media print {
  .header, .footer, .promo-banner, .cta-section { display: none; }
  body { padding: 0; }
}

/* === 31. MOBILE FIXES === */

/* Promo banner : forcer une ligne sur mobile pour que --promo-h soit précis */
@media (max-width: 640px) {
  .promo-banner {
    font-size: 0.71rem;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Hero CTA : boutons pleine largeur sur mobile */
@media (max-width: 640px) {
  .hero__cta {
    flex-direction: column;
  }
  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* Image hero : ratio moins haut sur mobile */
  .hero__img-wrap {
    aspect-ratio: 16/9;
  }

  /* Hero : réduire le padding-top sur mobile */
  .hero {
    padding-top: calc(var(--nav-h) + var(--promo-h) + var(--sp-5));
    padding-bottom: var(--sp-5);
  }

  /* Stats hero : gap réduit */
  .hero__stats {
    gap: var(--sp-3);
  }
}

/* Section offre phare (Pack 99€) : override du padding inline */
@media (max-width: 640px) {
  .offre-promo-inner {
    padding: 2rem 1.25rem !important;
    border-radius: 16px !important;
  }
}

/* Trust bar : items plus petits sur mobile */
@media (max-width: 640px) {
  .trust-bar__inner {
    gap: var(--sp-2) var(--sp-3);
  }
  .trust-item {
    font-size: 0.76rem;
  }
}

/* Sections : padding vertical réduit sur mobile */
@media (max-width: 640px) {
  .section {
    padding: var(--sp-5) 0;
  }
  .section--sm {
    padding: var(--sp-4) 0;
  }
  .section__header {
    margin-bottom: var(--sp-4);
  }
  .cta-section {
    padding: var(--sp-5) 0;
  }
}

/* Service card body : padding réduit sur mobile */
@media (max-width: 640px) {
  .service-card__body {
    padding: var(--sp-2) var(--sp-3);
  }
}

/* Feature card : padding réduit sur mobile */
@media (max-width: 640px) {
  .feature-card {
    padding: var(--sp-3);
  }
}

/* Footer grid : 1 colonne sur très petit mobile */
@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
