/* =========================================================
   Espace BB — Béatrice Bazile
   Maderothérapie & Drainage Lymphatique Brésilien — Nice
   ========================================================= */

/* --- Self-hosted fonts (Google Fonts variable) --------- */
/* Subset latin uniquement — couvre le français complet (U+0000-00FF + ligatures) */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('fonts/cormorant-regular.woff2') format('woff2-variations'),
       url('fonts/cormorant-regular.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/cormorant-italic.woff2') format('woff2-variations'),
       url('fonts/cormorant-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/inter.woff2') format('woff2-variations'),
       url('fonts/inter.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Pinyon Script';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/pinyon-script.woff2') format('woff2');
  unicode-range: U+0042; /* uniquement la lettre B (logo « BB ») — ultra-léger */
}

/* --- Design tokens ------------------------------------- */
:root {
  --rose-primary: #e8b4b8;
  --rose-deep: #d89ba0;
  --rose-light: #f5e6e4;
  --rose-mist: #fbeeed;
  --sage: #a8b5a0;
  --sage-deep: #87957f;
  --cream: #faf7f5;
  --cream-warm: #f3ece7;
  --brown: #3d2e2a;
  --brown-soft: #6b5650;
  --brown-mute: #8a7771;
  --gold: #c9a87c;
  --gold-light: #e0c9a6;
  --white: #ffffff;
  --black-overlay: rgba(61, 46, 42, 0.55);

  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-soft: 0 4px 24px rgba(61, 46, 42, 0.07);
  --shadow-medium: 0 16px 48px rgba(61, 46, 42, 0.12);
  --shadow-deep: 0 24px 64px rgba(61, 46, 42, 0.16);

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --container: 1200px;
  --container-narrow: 880px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & base -------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--brown);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--brown); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rose-deep); }

button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* --- Typography ---------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--brown);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 500; }

p { margin: 0 0 1.2em; }
p.lead {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--brown-soft);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "✦";
  margin-right: 0.6em;
  color: var(--gold);
}

.script-accent {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 400;
}

/* --- Layout helpers ------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding: clamp(64px, 9vw, 128px) 0;
}
.section--tight { padding: clamp(48px, 7vw, 96px) 0; }

.section--cream { background: var(--cream-warm); }
.section--rose { background: var(--rose-mist); }
.section--white { background: var(--white); }
.section--brown { background: var(--brown); color: var(--cream); }
.section--brown h1, .section--brown h2, .section--brown h3 { color: var(--cream); }

.text-center { text-align: center; }

.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

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

/* --- Top bar (announcement) ---------------------------- */
.topbar {
  background: var(--brown);
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 10px 0;
  text-align: center;
}
.topbar a { color: var(--rose-primary); font-weight: 500; }
.topbar a:hover { color: var(--rose-light); }

/* --- Header / nav -------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 245, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(61, 46, 42, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.brand__name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--brown);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.18em;
}
.brand__bb {
  font-family: 'Pinyon Script', 'Cormorant Garamond', cursive;
  font-style: normal;
  font-size: 1.35em;
  font-weight: 400;
  background: linear-gradient(135deg, #d89ba0 0%, #c9a87c 50%, #d89ba0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.02em;
  line-height: 1;
  display: inline-block;
  padding-right: 0.25em;
  overflow: visible;
}
.brand__tag {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-top: 4px;
}

.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--brown-soft);
  position: relative;
}
.nav__links a:hover,
.nav__links a.is-active {
  color: var(--brown);
}
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--rose-primary);
  border-radius: 1px;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--rose-light);
  color: var(--brown);
}
.nav__toggle span {
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  display: block;
  transition: var(--transition);
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: var(--transition);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }

body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

/* Mobile-only menu items: hidden by default on desktop, shown on mobile */
.nav__links > li.nav-mobile-only { display: none; }

@media (max-width: 960px) {
  /* Lock body scroll when the menu is open so the panel feels stable */
  body.menu-open { overflow: hidden; }

  /* Subtle scrim behind the panel */
  body.menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(61, 46, 42, 0.35);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 90;
    pointer-events: none;
  }

  .nav__links {
    position: fixed;
    top: 75px;        /* sous le header pour laisser la croix visible */
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: calc(100dvh - 75px);
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    padding: 24px 28px 56px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 99;
    box-shadow: -8px 0 32px rgba(61, 46, 42, 0.12);
  }
  .nav__links li {
    border-bottom: 1px solid rgba(61, 46, 42, 0.08);
  }
  .nav__links a {
    display: block;
    padding: 22px 4px;
    font-size: 1.4rem;
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--brown);
    letter-spacing: 0.005em;
  }
  .nav__links a.is-active::after { display: none; }
  .nav__links a.is-active {
    color: var(--rose-deep);
  }
  .nav__links > li.nav-mobile-only { display: list-item; }

  body.menu-open .nav__links { transform: translateX(0); }
  .nav__toggle { display: flex; position: relative; z-index: 110; }
  .nav__cta .btn--ghost { display: none; }
}

/* --- Buttons ------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--brown);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--rose-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}
.btn--rose {
  background: var(--rose-primary);
  color: var(--brown);
}
.btn--rose:hover {
  background: var(--rose-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}
.btn--ghost {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--brown);
}
.btn--ghost:hover {
  background: var(--brown);
  color: var(--cream);
}
.btn--light {
  background: var(--white);
  color: var(--brown);
}
.btn--light:hover {
  background: var(--rose-light);
  color: var(--brown);
}
.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- Hero ---------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0 clamp(80px, 12vw, 140px);
  background:
    radial-gradient(ellipse at top right, var(--rose-light) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, var(--cream-warm) 0%, transparent 50%),
    var(--cream);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232, 180, 184, 0.25), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero__content h1 {
  margin-bottom: 24px;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
.hero__content .lead { margin-bottom: 36px; max-width: 540px; }

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose-light), var(--cream-warm));
  box-shadow: var(--shadow-deep);
}
.hero__visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(61, 46, 42, 0.18));
}
.hero__visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: 10px;
  z-index: 2;
}
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage);
}

/* --- Trust strip --------------------------------------- */
.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 48px;
  padding: 32px 24px;
  background: var(--white);
  border-top: 1px solid rgba(61, 46, 42, 0.06);
  border-bottom: 1px solid rgba(61, 46, 42, 0.06);
}
.trust-strip__item {
  display: flex; align-items: center; gap: 10px;
  color: var(--brown-soft);
  font-size: 0.92rem;
  font-weight: 500;
}
.trust-strip__item svg { color: var(--sage-deep); flex-shrink: 0; }

/* --- Section headers ----------------------------------- */
.section__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.section__head .lead { margin-top: 16px; }
.section__head--left { text-align: left; margin-left: 0; }

/* --- Service cards ------------------------------------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
  border: 1px solid rgba(232, 180, 184, 0.2);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}
.service-card__visual {
  aspect-ratio: 3/2;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--rose-light), var(--cream-warm));
  margin-bottom: 24px;
  overflow: hidden;
}
.service-card__visual img { width: 100%; height: 100%; object-fit: cover; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--brown-soft); margin-bottom: 24px; flex-grow: 1; }
.service-card__link {
  font-weight: 600;
  color: var(--rose-deep);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
}
.service-card__link:hover { gap: 12px; color: var(--brown); }
.service-card__badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--gold);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
  z-index: 10;
}

/* --- Pillars / values ---------------------------------- */
.pillar {
  text-align: center;
  padding: 24px;
}
.pillar__icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: var(--rose-light);
  color: var(--rose-deep);
  display: flex; align-items: center; justify-content: center;
}
.pillar h3 { margin-bottom: 8px; font-size: 1.2rem; }
.pillar p { color: var(--brown-soft); font-size: 0.95rem; }

/* --- Testimonial --------------------------------------- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: "”";
  position: absolute;
  bottom: -40px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 9rem;
  color: var(--rose-light);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}
.testimonial__text {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--brown);
  margin-bottom: 24px;
}
.testimonial__author {
  font-weight: 600;
  color: var(--brown);
}
.testimonial__author span {
  color: var(--brown-mute);
  font-weight: 400;
  font-size: 0.9rem;
}
.testimonial__stars { color: var(--gold); margin-bottom: 8px; letter-spacing: 2px; }

.testimonial--featured {
  background: var(--brown);
  color: var(--cream);
  text-align: center;
  padding: 64px 48px;
}
.testimonial--featured::before { color: rgba(232, 180, 184, 0.15); }
.testimonial--featured .testimonial__text { color: var(--cream); }
.testimonial--featured .testimonial__author { color: var(--rose-primary); }

/* --- Steps / process ----------------------------------- */
.steps { counter-reset: step; }
.step {
  position: relative;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(232, 180, 184, 0.25);
  counter-increment: step;
}
.step::before {
  content: "0" counter(step);
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--rose-light);
  font-weight: 500;
  line-height: 1;
}
.step h3 { margin-bottom: 8px; font-size: 1.15rem; padding-right: 50px; }
.step p { color: var(--brown-soft); font-size: 0.95rem; margin: 0; }

/* --- Pricing tables ------------------------------------ */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.pricing-table thead {
  background: var(--rose-light);
}
.pricing-table th, .pricing-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(61, 46, 42, 0.06);
}
.pricing-table th {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brown);
}
.pricing-table tr:last-child td { border-bottom: 0; }
.pricing-table .price {
  font-weight: 700;
  color: var(--rose-deep);
  font-size: 1.05rem;
  white-space: nowrap;
}
.pricing-table .price--big { font-size: 1.3rem; }
.pricing-table tr.is-featured {
  background: var(--rose-mist);
}
.pricing-table .save {
  display: inline-block;
  background: var(--sage);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  letter-spacing: 0.04em;
}

@media (max-width: 700px) {
  .pricing-table th, .pricing-table td { padding: 14px 12px; font-size: 0.92rem; }
  .pricing-table th:first-child, .pricing-table td:first-child { padding-left: 18px; }
}

/* --- Pricing cards ------------------------------------- */
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  border: 1px solid rgba(232, 180, 184, 0.25);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}
.price-card.is-featured {
  border: 2px solid var(--rose-primary);
  background: linear-gradient(180deg, var(--rose-mist), var(--white));
}
.price-card__tag {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--rose-deep);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price-card h3 { margin-bottom: 6px; }
.price-card .duration {
  color: var(--brown-mute);
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.price-card .amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--brown);
  line-height: 1;
  margin: 16px 0;
}
.price-card .amount span { font-size: 1.4rem; vertical-align: super; }
.price-card .per {
  color: var(--brown-mute);
  font-size: 0.85rem;
  margin-bottom: 24px;
}
.price-card ul {
  list-style: none; padding: 0; margin: 0 0 28px;
  text-align: left;
}
.price-card li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.92rem;
  color: var(--brown-soft);
}
.price-card li::before {
  content: "✓";
  position: absolute; left: 0; top: 8px;
  color: var(--sage-deep);
  font-weight: 700;
}

/* --- FAQ accordion ------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(232, 180, 184, 0.25);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--brown);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.6rem;
  color: var(--rose-deep);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { background: var(--rose-mist); }
.faq-item summary:hover { background: var(--cream-warm); }
.faq-item__body {
  padding: 0 28px 28px;
  color: var(--brown-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* --- Stats / numbers ----------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid rgba(61, 46, 42, 0.08);
  border-bottom: 1px solid rgba(61, 46, 42, 0.08);
}
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--rose-deep);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown-soft);
}

/* --- Product card (boutique) --------------------------- */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(232, 180, 184, 0.2);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}
.product-card__media {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--rose-light), var(--cream-warm));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.product-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-card__brand {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 600;
  margin-bottom: 6px;
}
.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  line-height: 1.25;
}
.product-card__desc {
  color: var(--brown-soft);
  font-size: 0.9rem;
  margin-bottom: 16px;
  flex-grow: 1;
}
.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(61, 46, 42, 0.06);
  gap: 12px;
}
.product-card__price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--rose-deep);
  font-weight: 500;
}
.product-card__size {
  font-size: 0.8rem;
  color: var(--brown-mute);
}
.product-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--white);
  color: var(--brown);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
  z-index: 2;
}

/* --- Promo state on product-card ---------------------- */
.product-card--promo {
  border: 2px solid var(--gold);
  position: relative;
}
.product-card--promo .product-card__tag {
  background: var(--gold);
  color: var(--white);
}
.product-card__price-old {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--brown-mute);
  text-decoration: line-through;
  text-decoration-color: var(--rose-deep);
  text-decoration-thickness: 2px;
  margin-right: 8px;
}
.product-card__promo-note {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
  margin-bottom: 0;
}

/* --- Buy button (SumUp) ------------------------------- */
.product-card__buy {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  background: var(--brown);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  width: 100%;
}
.product-card__cta:hover,
.product-card__cta:focus-visible {
  background: var(--rose-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(61, 46, 42, 0.18);
}
.product-card__cta svg { transition: transform var(--transition); }
.product-card__cta:hover svg { transform: translateX(3px); }
.product-card--promo .product-card__cta {
  background: var(--gold);
  color: var(--white);
}
.product-card--promo .product-card__cta:hover,
.product-card--promo .product-card__cta:focus-visible {
  background: var(--brown);
  color: var(--cream);
}
.product-card__secure {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.72rem;
  color: var(--brown-mute);
  font-weight: 500;
}
.product-card__secure svg {
  flex-shrink: 0;
  color: var(--sage-deep);
}
.product-card__secure-cards {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 4px;
  opacity: 0.7;
}
.product-card__secure-cards svg {
  width: 26px;
  height: 16px;
  border-radius: 3px;
  background: var(--white);
  border: 1px solid rgba(61, 46, 42, 0.12);
  padding: 2px;
}

/* --- Image placeholder (visuel à remplacer) ------------ */
.img-placeholder {
  background: linear-gradient(135deg, var(--rose-light), var(--cream-warm));
  display: flex; align-items: center; justify-content: center;
  color: var(--brown-mute);
  font-size: 0.85rem;
  position: relative;
  text-align: center;
  padding: 24px;
}
.img-placeholder::before {
  content: "✿";
  font-size: 3rem;
  color: var(--rose-primary);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, calc(-50% - 24px));
  opacity: 0.6;
}
.img-placeholder span {
  position: relative;
  margin-top: 36px;
  font-style: italic;
}
.img-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 5;
}

/* --- Banner CTA ---------------------------------------- */
.cta-banner {
  background:
    radial-gradient(circle at 20% 30%, rgba(232, 180, 184, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(168, 181, 160, 0.3) 0%, transparent 50%),
    var(--rose-light);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 8vw, 96px) clamp(32px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner .lead { margin-bottom: 32px; }
.cta-banner__address {
  margin-top: 32px;
  color: var(--brown-soft);
  font-size: 0.95rem;
}

/* --- Bullet list --------------------------------------- */
.bullets { list-style: none; padding: 0; margin: 0; }
.bullets li {
  padding: 14px 0 14px 36px;
  position: relative;
  border-bottom: 1px solid rgba(61, 46, 42, 0.06);
  color: var(--brown-soft);
}
.bullets li:last-child { border-bottom: 0; }
.bullets li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 14px;
  width: 24px; height: 24px;
  background: var(--rose-light);
  color: var(--rose-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
}
.bullets--inline li { padding-top: 8px; padding-bottom: 8px; border: 0; }
.bullets--inline li::before { top: 8px; }

/* --- Article / prose ----------------------------------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.6em; margin-bottom: 0.6em; }
.prose ul, .prose ol { padding-left: 1.4em; margin-bottom: 1.4em; }
.prose li { margin-bottom: 0.5em; }
.prose blockquote {
  border-left: 3px solid var(--rose-primary);
  padding: 4px 24px;
  margin: 24px 0;
  font-style: italic;
  color: var(--brown-soft);
  background: var(--rose-mist);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.prose .info-box {
  background: var(--cream-warm);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  border-left: 4px solid var(--gold);
}
.prose .info-box strong { color: var(--brown); }
.prose .warn-box {
  background: var(--rose-mist);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  border-left: 4px solid var(--rose-deep);
  font-size: 0.95rem;
}

/* --- Two-column feature -------------------------------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature--reverse > :first-child { order: 2; }
.feature__visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--rose-light), var(--cream-warm));
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}
@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; gap: 32px; }
  .feature--reverse > :first-child { order: 0; }
}

/* --- Forms --------------------------------------------- */
.form { display: flex; flex-direction: column; gap: 18px; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.02em;
}
.form__field input,
.form__field textarea,
.form__field select {
  font-family: inherit;
  font-size: 1rem;
  color: var(--brown);
  background: var(--white);
  border: 1.5px solid rgba(61, 46, 42, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: border-color var(--transition);
}
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: 0;
  border-color: var(--rose-primary);
}
.form__field textarea { resize: vertical; min-height: 120px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form__check {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.88rem;
  color: var(--brown-soft);
}
.form__check input { margin-top: 4px; }

/* --- Map / contact info -------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.contact-info__row {
  display: flex; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(61, 46, 42, 0.06);
}
.contact-info__row:last-child { border-bottom: 0; }
.contact-info__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--rose-light);
  color: var(--rose-deep);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
}
.contact-info__row strong { display: block; color: var(--brown); margin-bottom: 4px; }
.contact-info__row p { margin: 0; font-size: 0.95rem; color: var(--brown-soft); }

.map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-warm);
  border: 0;
}

/* --- Footer -------------------------------------------- */
.site-footer {
  background: var(--brown);
  color: var(--cream-warm);
  padding: 80px 0 32px;
}
.site-footer h4 {
  color: var(--rose-primary);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand .brand__name { color: var(--cream); }
.footer__brand .brand__tag { color: var(--rose-primary); }
.footer__brand p {
  margin-top: 16px;
  color: rgba(250, 247, 245, 0.7);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 320px;
}
.footer__list { list-style: none; padding: 0; margin: 0; }
.footer__list li { margin-bottom: 12px; }
.footer__list a {
  color: rgba(250, 247, 245, 0.75);
  font-size: 0.92rem;
}
.footer__list a:hover { color: var(--rose-primary); }
.footer__social { display: flex; gap: 12px; margin-top: 16px; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: rgba(250, 247, 245, 0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-warm);
}
.footer__social a:hover { background: var(--rose-primary); color: var(--brown); }

.footer__bottom {
  border-top: 1px solid rgba(250, 247, 245, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(250, 247, 245, 0.5);
}
.footer__bottom a { color: rgba(250, 247, 245, 0.6); }
.footer__bottom a:hover { color: var(--rose-primary); }

/* --- Page header (sub-pages) --------------------------- */
.page-hero {
  padding: clamp(64px, 9vw, 120px) 0 clamp(48px, 7vw, 80px);
  background:
    radial-gradient(ellipse at top right, var(--rose-light) 0%, transparent 60%),
    var(--cream);
  text-align: center;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { max-width: 620px; margin: 0 auto; }
.page-hero__breadcrumb {
  font-size: 0.82rem;
  color: var(--brown-mute);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.page-hero__breadcrumb a { color: var(--rose-deep); }

/* --- Animations --------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Utilities ----------------------------------------- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-rose { color: var(--rose-deep); }
.text-soft { color: var(--brown-soft); }
.text-mute { color: var(--brown-mute); }
.text-serif { font-family: var(--font-serif); }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* --- Stats: 3-column variant (centered) --------------- */
.stats--3 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 56px 96px;
  grid-template-columns: none;
}
.stats--3 .stat { min-width: 0; }

/* --- Promo banner — luxury cosmetic style -------------- */
.promo-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 40px;
  background: var(--white);
  border: 1px solid rgba(201, 168, 124, 0.35);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
}
.promo-banner:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold);
}
.promo-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.promo-banner__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.promo-banner__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--brown);
  line-height: 1.25;
  margin: 0 0 6px;
}
.promo-banner__title em {
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 400;
}
.promo-banner__sub {
  color: var(--brown-soft);
  font-size: 0.92rem;
  margin: 0;
}
.promo-banner__price {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-left: 32px;
  border-left: 1px solid rgba(61, 46, 42, 0.12);
}
.promo-banner__price-old {
  font-family: var(--font-serif);
  color: var(--brown-mute);
  font-size: 1.4rem;
  position: relative;
}
.promo-banner__price-old::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  top: 50%;
  height: 1px;
  background: var(--rose-deep);
  transform: rotate(-8deg);
}
.promo-banner__price-new {
  font-family: var(--font-serif);
  color: var(--brown);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
}
.promo-banner__price-new sup {
  font-size: 0.9rem;
  font-weight: 500;
  vertical-align: top;
  margin-left: 4px;
  color: var(--gold);
}

@media (max-width: 720px) {
  .promo-banner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 24px 24px 28px;
  }
  .promo-banner__title { font-size: 1.2rem; }
  .promo-banner__price {
    padding-left: 0;
    border-left: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(61, 46, 42, 0.1);
  }
  .promo-banner__price-new { font-size: 2.1rem; }
}

/* Featured promo on the price card */
.price-card--promo {
  border: 1.5px solid var(--gold) !important;
  background: var(--white) !important;
  position: relative;
}
.price-card--promo::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.price-card--promo .price-card__tag {
  background: var(--gold);
}
.price-card__strike {
  display: block;
  color: var(--brown-mute);
  font-size: 1.3rem;
  font-family: var(--font-serif);
  margin-bottom: -4px;
  margin-top: 8px;
  position: relative;
  display: inline-block;
}
.price-card__strike::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px;
  top: 52%;
  height: 1px;
  background: var(--rose-deep);
  transform: rotate(-6deg);
}
.price-card__promo-note {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: 20px;
}

/* --- Mobile / smartphone overrides --------------------- */
@media (max-width: 720px) {
  .container { padding: 0 18px; }

  /* Hero — éviter tout débordement horizontal */
  .hero { padding: 48px 0 56px; }
  .hero::before { width: 320px; height: 320px; top: -100px; right: -100px; }
  .hero__grid { gap: 32px; }
  .hero__content { min-width: 0; }
  .hero__content h1,
  body .hero__content h1 {
    font-size: clamp(1.75rem, 8vw, 2.4rem) !important;
    line-height: 1.18;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
  .hero__content .lead {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 28px;
  }
  .hero__content .btn-row { width: 100%; }
  .hero__content .btn-row .btn { width: 100%; }
  .hero__content .btn--lg {
    padding: 16px 20px;
    font-size: 0.92rem;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }
  .hero__visual { aspect-ratio: 4/4.4; }
  .hero__visual img { object-position: center; }

  .eyebrow { font-size: 0.7rem; letter-spacing: 0.14em; }

  .topbar { font-size: 0.78rem; padding: 8px 12px; line-height: 1.4; }

  h1 { font-size: clamp(1.85rem, 7.5vw, 2.4rem); }
  h2 { font-size: clamp(1.55rem, 6vw, 2.1rem); }

  .btn--lg { padding: 14px 20px; font-size: 0.95rem; }

  .section { padding: 56px 0; }
  .section--tight { padding: 40px 0; }

  .stats { gap: 24px 16px; }
  .stats--3 { gap: 32px 40px; }

  .cta-banner { padding: 40px 24px; }

  .pricing-table th, .pricing-table td {
    padding: 12px 10px;
    font-size: 0.88rem;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
