/* Reset */
@import url('https://fonts.googleapis.com/css?family=Cinzel+Decorative:400,700,900');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FFF5e1;
  --warm-white: #FAF8F4;
  --stone: #C8BFB0;
  --taupe: #8C7E70;
  --deep: #2A2520;
  --accent: #7A6A5A;
  --line: rgba(42, 37, 32, 0.12);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--warm-white);
  color: var(--deep);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
.header {
  background: var(--warm-white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.header-container img {
  height: 80px;
  width: auto;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--deep);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 3px;
  transition: background 0.15s;
}

.nav a:hover {
  background: var(--cream);
}

/* ── BURGER MENU ── */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--deep);
  transition: all 0.25s ease;
}

.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── INTRO SECTION ── */
.tarifs-intro {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  border-bottom: 1px solid var(--line);
}

.tarifs-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.25rem;
}

.tarifs-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--deep);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.tarifs-heading em {
  font-style: italic;
  color: var(--accent);
}

.tarifs-sous {
  font-size: 15px;
  color: var(--taupe);
  max-width: 480px;
  line-height: 1.75;
}

/* ── CORPS DE PAGE ── */
.page-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

/* ── CATÉGORIE ── */
.categorie {
  margin-top: 3rem;
}

.categorie-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}

/* ── ACCORDION ── */
.soin {
  border-bottom: 1px solid var(--line);
}

.soin summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.soin summary::-webkit-details-marker { display: none; }

.soin-gauche {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.soin-nom {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: var(--deep);
  line-height: 1.2;
}

.soin-duree {
  font-size: 12px;
  color: var(--taupe);
  letter-spacing: 0.03em;
}

.soin-droite {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.soin-prix {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 400;
  color: var(--accent);
  white-space: nowrap;
}

.soin-chevron {
  display: block;
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  color: var(--stone);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

details[open] > summary .soin-chevron {
  transform: rotate(180deg);
}

.soin-body {
  padding: 0 0 1.5rem;
  max-width: 580px;
}

.soin-body p {
  font-size: 14px;
  color: var(--taupe);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.soin-body p:last-child { margin-bottom: 0; }

.soin-body ul {
  list-style: none;
  margin-top: 0.5rem;
}

.soin-body ul li {
  font-size: 13px;
  color: var(--taupe);
  padding: 0.25rem 0 0.25rem 1rem;
  position: relative;
}

.soin-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--stone);
  font-size: 11px;
}

/* ── BADGE ── */
.badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--stone);
  border-radius: 2px;
  color: var(--taupe);
  vertical-align: middle;
  margin-left: 8px;
  line-height: 1.4;
}

/* ── ANIMATION OUVERTURE ── */
details .soin-body {
  animation: fadeDown 0.2s ease;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── CTA ── */
.cta-wrap {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.cta-note {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

.cta-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep);
  text-decoration: none;
  border: 1px solid var(--deep);
  padding: 0.85rem 2.5rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.cta-btn:hover {
  background: var(--deep);
  color: var(--warm-white);
}

/* ── RÉSEAUX SOCIAUX ── */
.grid-reseaux {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 1rem;
  border-top: 1px solid var(--line);
}

.png-sociaux img {
  max-width: 28px;
  height: auto;
  opacity: 0.65;
  transition: opacity 0.2s;
}

.png-sociaux img:hover {
  opacity: 1;
}

/* ── FOOTER ── */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 2rem 1rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer img {
  height: 70px;
  width: auto;
}

.footer p {
  font-size: 13px;
  color: var(--taupe);
  line-height: 1.7;
}

.footer a {
  color: var(--taupe);
  text-decoration: none;
}

.footer a:hover {
  color: var(--deep);
}

.hidden { display: none; }

/* ── FOCUS ACCESSIBILITY ── */
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ── RESPONSIVE TABLETTE ── */
@media (max-width: 768px) {
  .tarifs-intro {
    padding: 3rem 1.5rem 2rem;
  }

  .page-body {
    padding: 0 1.5rem 4rem;
  }
}

/* ── RESPONSIVE MOBILE ── */
@media (max-width: 480px) {
  .header-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .header-container img {
    height: 60px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-white);
    border-top: 1px solid var(--line);
    display: none;
    z-index: 100;
  }

  .nav.active {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav a {
    display: block;
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .tarifs-intro {
    padding: 2.5rem 1.25rem 1.75rem;
  }

  .page-body {
    padding: 0 1.25rem 3rem;
  }

  .soin summary {
    padding: 1rem 0;
    flex-wrap: wrap;
  }

  .soin-prix {
    font-size: 1rem;
  }

  .soin-droite {
    gap: 0.75rem;
  }

  .grid-reseaux {
    gap: 1.5rem;
    padding: 2rem 0;
  }

  .png-sociaux img {
    max-width: 32px;
  }

  .footer img {
    height: 60px;
  }
}

/* ── TRÈS PETITS ÉCRANS ── */
@media (max-width: 380px) {
  .soin-nom { font-size: 1rem; }
  .tarifs-heading { font-size: 2rem; }

  .header-container img {
    height: 50px;
  }
}