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

:root {
  --rose-poudre: #E8C4C4;
  --rose-clair: #F5E6E6;
  --rose-tres-clair: #FDF5F5;
  --rose-medium: #D4A5A5;
  --rose-doux: #C9B1B1;
  --beige-rose: #F2E9E9;
  --blanc-casse: #FFFAF9;
  --text-principal: #5D4E4E;
  --text-secondaire: #8B7E7E;
  --text-clair: #A89999;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-principal);
  background: var(--blanc-casse);
}

/* Container centré */
.container {
  max-width: 540px;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
  box-shadow: 0 0 60px rgba(200, 180, 180, 0.15);
  position: relative;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--rose-clair);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-principal);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-secondaire);
  letter-spacing: 0.3px;
  margin-top: 2px;
}

/* Menu burger */
.menu-toggle {
  width: 40px;
  height: 40px;
  background: var(--rose-tres-clair);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: var(--rose-clair);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-secondaire);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active {
  background: var(--rose-poudre);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation */
.nav-overlay {
  position: fixed;
  top: 75px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(93, 78, 78, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 98;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

nav {
  position: fixed;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 540px;
  background: #fff;
  padding: 20px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--rose-clair);
}

nav.active {
  opacity: 1;
  visibility: visible;
}

nav a {
  display: block;
  padding: 14px 20px;
  color: var(--text-principal);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
  margin-bottom: 4px;
}

nav a:hover, nav a.active {
  background: var(--rose-tres-clair);
  color: var(--text-principal);
}

/* Sections */
section {
  padding: 40px 24px;
}

section:nth-child(even) {
  background: var(--rose-tres-clair);
}

/* Titres */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  color: var(--text-principal);
}

h1 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 16px;
}

h2 {
  font-size: 24px;
  margin-bottom: 24px;
  text-align: center;
}

h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 50px 24px 40px;
  background: linear-gradient(180deg, var(--rose-tres-clair) 0%, #fff 100%);
}

.hero-banner {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(200, 180, 180, 0.3);
  margin-bottom: 24px;
}

.hero-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 8px 30px rgba(200, 180, 180, 0.3);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose-medium);
  margin-bottom: 12px;
}

.hero p {
  color: var(--text-secondaire);
  font-size: 15px;
  max-width: 380px;
  margin: 0 auto 28px;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-clair);
  margin-bottom: 24px;
  font-style: normal;
}

.hero-location svg {
  width: 14px;
  height: 14px;
  stroke: var(--rose-doux);
}

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--rose-poudre);
  color: var(--text-principal);
}

.btn-primary:hover {
  background: var(--rose-medium);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 165, 165, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-principal);
  border: 1.5px solid var(--rose-poudre);
}

.btn-secondary:hover {
  background: var(--rose-tres-clair);
}

.btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* Séparateur */
.separator {
  width: 40px;
  height: 2px;
  background: var(--rose-poudre);
  margin: 0 auto 20px;
  border-radius: 2px;
}

/* Cards Services */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 1px solid var(--rose-clair);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(200, 180, 180, 0.2);
  border-color: var(--rose-poudre);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--rose-tres-clair);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--rose-medium);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-secondaire);
  margin: 0;
}

/* Formules */
.formules-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.formule-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid var(--rose-clair);
  position: relative;
  overflow: hidden;
}

.formule-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--rose-poudre);
}

.formule-card.featured::before {
  background: linear-gradient(90deg, var(--rose-poudre), var(--rose-medium));
}

.formule-badge {
  display: inline-block;
  background: var(--rose-tres-clair);
  color: var(--text-secondaire);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.formule-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.formule-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text-principal);
}

.formule-meta {
  font-size: 13px;
  color: var(--text-secondaire);
  margin-top: 4px;
}

.formule-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-principal);
}

.formule-desc {
  font-size: 14px;
  color: var(--text-secondaire);
  margin-bottom: 20px;
  line-height: 1.6;
}

.formule-features {
  list-style: none;
}

.formule-features li {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rose-clair);
  position: relative;
  padding-left: 24px;
}

.formule-features li:last-child {
  border-bottom: none;
}

.formule-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--rose-medium);
  font-weight: 600;
}

/* Témoignages */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--rose-clair);
}

.testimonial-stars {
  color: var(--rose-medium);
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  font-style: italic;
  color: var(--text-principal);
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-principal);
}

.testimonial-date {
  font-size: 12px;
  color: var(--text-clair);
}

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 13px;
  color: var(--text-secondaire);
  margin-bottom: 24px;
  border: 1px solid var(--rose-clair);
}

.google-rating svg {
  width: 16px;
  height: 16px;
  fill: var(--rose-medium);
}

/* À propos */
.about-content {
  text-align: center;
}

.about-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 8px 30px rgba(200, 180, 180, 0.3);
  margin-bottom: 24px;
}

.about-content p {
  font-size: 15px;
  color: var(--text-secondaire);
  margin-bottom: 16px;
  text-align: left;
}

.about-highlight {
  background: var(--rose-tres-clair);
  border-left: 3px solid var(--rose-poudre);
  padding: 20px;
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-principal);
  text-align: left;
}

/* Contact */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--rose-clair);
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--rose-poudre);
  transform: translateY(-2px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--rose-tres-clair);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--rose-medium);
  fill: none;
  stroke-width: 1.5;
}

.contact-label {
  font-size: 12px;
  color: var(--text-clair);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-principal);
}

/* WhatsApp flottant */
.whatsapp-float {
  position: fixed;
  bottom: 110px;
  right: max(16px, calc((100vw - 540px) / 2 + 16px));
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--rose-poudre), var(--rose-medium));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(183, 110, 121, 0.35);
  z-index: 99;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(183, 110, 121, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float .whatsapp-tooltip {
  position: absolute;
  right: 66px;
  background: #fff;
  color: var(--text-principal);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* Footer fixe */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 540px;
  background: #fff;
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  border-top: 1px solid var(--rose-clair);
  z-index: 100;
}

.fixed-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.fixed-cta a svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.fixed-cta .cta-call {
  background: var(--rose-poudre);
  color: var(--text-principal);
}

.fixed-cta .cta-call:hover {
  background: var(--rose-medium);
}

.fixed-cta .cta-rdv {
  background: var(--rose-tres-clair);
  color: var(--text-principal);
  border: 1px solid var(--rose-poudre);
}

.fixed-cta .cta-rdv:hover {
  background: var(--rose-clair);
}

/* Espacement pour le footer fixe */
.spacer {
  height: 90px;
}

/* Page détail service */
.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-secondaire);
  text-decoration: none;
  margin-bottom: 24px;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--rose-tres-clair);
  transition: all 0.2s ease;
}

.detail-back:hover {
  background: var(--rose-clair);
}

.detail-back svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.detail-section {
  padding: 40px 24px;
}

.detail-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(200, 180, 180, 0.2);
}

.content-block {
  margin-bottom: 28px;
}

.content-block p {
  font-size: 15px;
  color: var(--text-secondaire);
  margin-bottom: 12px;
}

.content-block ul {
  list-style: none;
}

.content-block li {
  font-size: 14px;
  padding: 12px 16px;
  background: var(--rose-tres-clair);
  border-radius: 10px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 32px;
}

.content-block li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--rose-medium);
  border-radius: 50%;
}

.highlight-text {
  background: linear-gradient(135deg, var(--rose-tres-clair), var(--beige-rose));
  padding: 20px;
  border-radius: 16px;
  font-style: italic;
  color: var(--text-principal);
  text-align: center;
  margin: 24px 0;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeIn 0.5s ease forwards;
}

/* Rich Footer */
.rich-footer {
  background: var(--rose-tres-clair);
  padding: 20px 20px 16px;
  border-top: 1px solid var(--rose-clair);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}

.rich-footer .footer-col {
  margin-bottom: 0;
}

.rich-footer .footer-col:first-child {
  grid-column: 1 / -1;
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rose-clair);
}

.rich-footer .footer-col:last-child {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 11px;
}

.rich-footer h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-principal);
  margin-bottom: 4px;
}

.rich-footer p,
.rich-footer address {
  font-size: 11px;
  color: var(--text-secondaire);
  font-style: normal;
  line-height: 1.5;
  margin-bottom: 2px;
}

.rich-footer a {
  display: block;
  font-size: 11px;
  color: var(--text-secondaire);
  text-decoration: none;
  padding: 2px 0;
  transition: color 0.2s ease;
}

.rich-footer a:hover {
  color: var(--text-principal);
}

/* Related Services Cross-links */
.related-services {
  margin-top: 32px;
  padding: 24px;
  background: var(--rose-tres-clair);
  border-radius: 16px;
}

.related-services h3 {
  font-size: 18px;
  margin-bottom: 12px;
  text-align: center;
}

.related-services a {
  display: block;
  padding: 12px 16px;
  margin-bottom: 8px;
  background: #fff;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-principal);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--rose-clair);
  transition: all 0.2s ease;
}

.related-services a:last-child {
  margin-bottom: 0;
}

.related-services a:hover {
  border-color: var(--rose-poudre);
  transform: translateY(-1px);
}

/* Related Articles */
.related-articles {
  margin-top: 32px;
  padding: 24px;
  background: var(--rose-tres-clair);
  border-radius: 16px;
}

.related-articles h3 {
  font-size: 18px;
  margin-bottom: 12px;
  text-align: center;
}

.related-articles a {
  display: block;
  padding: 12px 16px;
  margin-bottom: 8px;
  background: #fff;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-principal);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--rose-clair);
  transition: all 0.2s ease;
}

.related-articles a:last-child {
  margin-bottom: 0;
}

.related-articles a:hover {
  border-color: var(--rose-poudre);
  transform: translateY(-1px);
}

/* Bandeau Cookies */
.cookie-banner {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 540px;
  background: #fff;
  padding: 12px 20px;
  border-bottom: 1px solid var(--rose-clair);
  box-shadow: 0 4px 20px rgba(200, 180, 180, 0.2);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 0 0 12px 12px;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--text-secondaire);
  margin: 0;
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--text-principal);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-accept, .cookie-refuse {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all 0.2s ease;
}

.cookie-accept {
  background: var(--rose-poudre);
  color: var(--text-principal);
}

.cookie-accept:hover {
  background: var(--rose-medium);
}

.cookie-refuse {
  background: var(--rose-tres-clair);
  color: var(--text-secondaire);
  border: 1px solid var(--rose-clair);
}

.cookie-refuse:hover {
  background: var(--rose-clair);
}

/* Responsive */
@media (max-width: 540px) {
  .container {
    box-shadow: none;
  }

  nav {
    max-width: 100%;
  }
}
