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

:root {
  --rose:        #c97d8a;
  --rose-dark:   #a85d6a;
  --rose-light:  #f0d0d5;
  --rose-pale:   #fdf0f2;
  --blush:       #fae4e8;
  --cream:       #fdf6f1;
  --dark:        #2a1a1e;
  --mid:         #5c3d44;
  --soft:        #9a7078;
  --white:       #ffffff;
  --gold:        #b8965a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
em { font-style: italic; }
a  { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul  { list-style: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

/* Offset for fixed header on all anchor sections */
section[id] { scroll-margin-top: 70px; }
#produit { scroll-margin-top: 70px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-size: .88rem; font-weight: 500;
  cursor: pointer; border: none;
  transition: transform .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); }

.btn-rose {
  background: linear-gradient(135deg, #c97d8a 0%, #a85060 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(168,80,100,.4);
  letter-spacing: .04em;
}
.btn-rose:hover { box-shadow: 0 14px 36px rgba(168,80,100,.5); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(184,150,90,.5);
  color: #e8c97a;
  letter-spacing: .06em;
}
.btn-ghost:hover { background: rgba(184,150,90,.1); border-color: rgba(184,150,90,.8); }

.btn-paypal {
  background: #003087;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0,48,135,.25);
}
.btn-paypal:hover { box-shadow: 0 10px 28px rgba(0,48,135,.35); }

.btn-outline-rose {
  background: transparent;
  color: var(--rose-dark);
  border: 1.5px solid var(--rose);
}
.btn-outline-rose:hover { background: var(--rose-pale); }

/* ── Header ── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s, box-shadow .35s;
}
#header.scrolled {
  background: rgba(255,248,249,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(201,125,138,.13);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 100%;
  padding: 0 48px;
}
.header-inner nav {
  display: flex;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 600;
  color: var(--white); letter-spacing: .03em;
  transition: color .3s;
  line-height: 1;
  display: flex; align-items: center;
}
.logo em { font-style: italic; font-weight: 400; color: #ffd6dc; }
#header.scrolled .logo { color: var(--dark); }
#header.scrolled .logo em { color: var(--rose); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  color: rgba(255,255,255,.82); font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: #ffd6dc; }
#header.scrolled .nav-links a { color: var(--mid); }
#header.scrolled .nav-links a:hover { color: var(--rose); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: background .3s; }
#header.scrolled .hamburger span { background: var(--dark); }

.mobile-menu { display: none; flex-direction: column; background: rgba(255,248,249,.98); padding: 8px 28px 22px; border-bottom: 1px solid var(--rose-light); }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--mid); padding: 13px 0; font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid var(--blush); }
.mobile-menu a:last-child { border-bottom: none; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(184,100,120,.35) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(184,80,100,.2) 0%, transparent 50%),
    linear-gradient(150deg, #1a0c10 0%, #3d1a24 35%, #6b2535 65%, #8b3a4a 100%);
  display: flex; align-items: center;
  overflow: hidden;
}

/* Gold decorative lines */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, transparent 0%, rgba(184,150,90,.04) 50%, transparent 100%),
    repeating-linear-gradient(135deg, transparent, transparent 60px, rgba(255,255,255,.015) 60px, rgba(255,255,255,.015) 61px);
  pointer-events: none;
}

/* Decorative circles */
.hero-deco { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-deco-1 {
  width: 800px; height: 800px;
  top: -250px; right: -200px;
  background: radial-gradient(circle, rgba(201,125,138,.12) 0%, transparent 65%);
}
.hero-deco-2 {
  width: 500px; height: 500px;
  bottom: -150px; left: -100px;
  background: radial-gradient(circle, rgba(184,150,90,.07) 0%, transparent 65%);
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding-top: 110px; padding-bottom: 90px;
}

/* ── Hero Visual (left) ── */
.hero-visual {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}

/* Gold ring behind bottle */
.hero-visual::before {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,90,.2);
  top: 50%; left: 50%; transform: translate(-50%, -52%);
  pointer-events: none;
}
.hero-visual::after {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  top: 50%; left: 50%; transform: translate(-50%, -52%);
  pointer-events: none;
}

.bottle-frame {
  position: relative;
  width: 300px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: transparent;
}

.bottle-frame img {
  width: 90%; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.5)) drop-shadow(0 8px 20px rgba(80,20,35,.4));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}

/* Fallback box when image missing */
.img-fallback {
  display: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  text-align: center; padding: 20px;
  color: rgba(255,255,255,.7);
}
.img-fallback span { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--white); }
.img-fallback small { font-size: .75rem; opacity: .7; }
.img-fallback p { font-size: .75rem; color: rgba(255,200,200,.8); margin-top: 8px; line-height: 1.5; }
.img-fallback.small { color: var(--soft); }
.img-fallback.small span { color: var(--rose); font-size: 1.5rem; }

.hero-badge {
  margin-top: 20px;
  align-self: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(184,150,90,.4);
  color: #e8c97a;
  font-size: .75rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase;
  padding: 8px 22px; border-radius: 50px;
  backdrop-filter: blur(6px);
  display: inline-block;
}

/* ── Hero Text (right) ── */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,150,90,.12);
  border: 1px solid rgba(184,150,90,.35);
  color: #e8c97a;
  border-radius: 50px; padding: 7px 18px;
  font-size: .72rem; letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: -.01em;
  line-height: 1.05;
}
.hero-text h1 em {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,210,220,.7);
  font-size: clamp(3rem, 6.5vw, 5.4rem);
}

/* Gold thin line accent */
.hero-text h1::after {
  content: '';
  display: block;
  width: 60px; height: 1px;
  background: linear-gradient(90deg, #b8965a, transparent);
  margin-top: 18px;
}

.hero-desc {
  color: rgba(255,255,255,.6);
  font-size: .95rem; line-height: 1.85;
  max-width: 400px; margin-bottom: 36px;
  font-weight: 300;
}

/* Stats row */
.hero-stats {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 40px;
  padding: 20px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  backdrop-filter: blur(4px);
  width: fit-content;
}
.stat span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 600;
  color: #e8c97a; line-height: 1;
}
.stat p { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 4px; }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,.12); }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 70px; }

/* ── Strip ── */
.strip { background: var(--cream); padding: 20px 0; border-bottom: 1px solid var(--rose-light); }
.strip-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px 24px; }
.strip-item { display: flex; align-items: center; gap: 8px; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rose); flex-shrink: 0; }
.strip-sep { color: var(--rose-light); font-size: .8rem; }

/* ── Product Section ── */
.product-section { padding: 20px 0 40px; background: var(--cream); overflow: visible; }

.product-header { text-align: center; margin-bottom: 24px; }
.product-header h2 { margin-bottom: 14px; }
.product-header h2 em { color: var(--rose-dark); }
.product-subtitle {
  color: var(--soft); font-size: .96rem; line-height: 1.75;
  max-width: 520px; margin: 0 auto;
}

.eyebrow { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--rose); margin-bottom: 10px; }

.product-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: center; }

/* Product image */
.product-visual {
  position: relative;
  display: flex; justify-content: center; align-items: flex-start;
  padding-top: 10px;
  padding-bottom: 40px;
  min-height: unset;
  overflow: visible;
}
.visual-ring {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.visual-ring-1 {
  width: 220px; height: 220px;
  background: linear-gradient(135deg, var(--blush), var(--rose-light));
  opacity: .7;
}
.visual-ring-2 {
  width: 170px; height: 170px;
  border: 1px solid var(--rose-light);
}
.product-img {
  position: relative; z-index: 1;
  width: 190px; height: auto;
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(168,80,100,.3));
  transition: transform .5s ease;
}
.product-img:hover { transform: scale(1.04) translateY(-6px); }

/* Benefit cards */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.benefit-card {
  background: var(--white);
  border: 1px solid var(--rose-light); border-radius: 12px;
  padding: 11px 12px;
  display: flex; align-items: flex-start; gap: 12px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.benefit-card:hover { border-color: var(--rose); box-shadow: 0 6px 20px rgba(201,125,138,.12); transform: translateY(-2px); }
.b-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.benefit-card strong { display: block; font-size: .83rem; font-weight: 500; color: var(--dark); margin-bottom: 3px; }
.benefit-card p { font-size: .78rem; color: var(--soft); line-height: 1.4; }

/* How to use */
.howto-block { margin-bottom: 14px; }
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 6px; margin-bottom: 10px; }
.step { display: flex; align-items: center; gap: 12px; }
.step-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: .9rem; font-weight: 600;
  color: var(--white); background: var(--rose);
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; letter-spacing: 0;
}
.step p { font-size: .82rem; color: var(--mid); line-height: 1.4; }

/* Zone chips */
.zones-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.zones-chips span {
  background: var(--blush); color: var(--rose-dark);
  border: 1px solid var(--rose-light); border-radius: 50px;
  padding: 5px 14px; font-size: .76rem; letter-spacing: .05em;
}

.cta-wrap { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Nav Catalogue button ── */
.nav-catalogue {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: .8rem;
  transition: background .2s;
}
.nav-catalogue:hover { background: rgba(255,255,255,.28) !important; color: var(--white) !important; }
#header.scrolled .nav-catalogue {
  background: var(--rose-pale);
  border-color: var(--rose-light);
  color: var(--rose-dark) !important;
}

/* ── Trust Quote ── */
.trust-section {
  background: linear-gradient(135deg, #3b1520 0%, #7a2d40 50%, #c97d8a 100%);
  padding: 80px 24px; text-align: center; position: relative; overflow: hidden;
}
.trust-section::before, .trust-section::after {
  content: '';
  position: absolute; border-radius: 50%; pointer-events: none;
}
.trust-section::before {
  width: 500px; height: 500px; top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(255,180,195,.1) 0%, transparent 70%);
}
.trust-section::after {
  width: 300px; height: 300px; bottom: -100px; left: -50px;
  background: radial-gradient(circle, rgba(255,200,210,.08) 0%, transparent 70%);
}
.trust-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.trust-deco { font-size: 1.4rem; color: rgba(255,200,210,.5); margin-bottom: 20px; letter-spacing: .5em; }
.trust-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-style: italic; font-weight: 400;
  color: var(--white); line-height: 1.65; margin-bottom: 18px;
}
.trust-brand { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); }

/* ── Questions rapides ── */
.questions-section { padding: 88px 0; background: var(--cream); }

.questions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.q-card {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 18px;
  background: var(--white);
  border: 1px solid var(--rose-light);
  border-radius: 16px;
  color: var(--dark);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  cursor: pointer;
}
.q-card:hover {
  transform: translateY(-3px);
  border-color: var(--rose);
  box-shadow: 0 8px 24px rgba(201,125,138,.15);
}

.q-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }

.q-card div { flex: 1; }
.q-card strong { display: block; font-size: .88rem; font-weight: 500; color: var(--dark); margin-bottom: 3px; }
.q-card p { font-size: .76rem; color: var(--soft); line-height: 1.4; }

.q-arrow { color: var(--rose-light); font-size: 1rem; flex-shrink: 0; transition: transform .2s, color .2s; }
.q-card:hover .q-arrow { color: var(--rose); transform: translateX(4px); }

@media (max-width: 860px) { .questions-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px)  { .questions-grid { grid-template-columns: 1fr; } }


/* ── Contact ── */
.contact-section { padding: 88px 0; background: var(--white); }
.contact-section h2 { margin-bottom: 44px; }

.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 800px; margin: 0 auto; }

.social-card {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 18px; border: 1px solid var(--rose-light); border-radius: 18px;
  color: var(--dark);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.social-card:hover { border-color: var(--rose); box-shadow: 0 8px 24px rgba(201,125,138,.14); transform: translateY(-4px); }

.social-icon-wrap {
  width: 46px; height: 46px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--white);
}
.insta-bg { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.fb-bg    { background: #1877f2; }
.wa-bg    { background: #25D366; }

.social-text { flex: 1; }
.social-name   { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--soft); margin-bottom: 3px; }
.social-handle { font-size: .88rem; font-weight: 500; }
.arrow { color: var(--rose-light); transition: color .2s, transform .2s; }
.social-card:hover .arrow { color: var(--rose); transform: translateX(4px); }

/* ── Footer ── */
.footer { background: var(--dark); padding: 32px 0; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--white); }
.footer-logo em { font-style: italic; color: #ffd6dc; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: .75rem; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-links a:hover { color: #ffd6dc; }

/* ── Responsive ── */
/* ═══════════════════════════════
   TABLET  (≤ 900px)
═══════════════════════════════ */
@media (max-width: 900px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding-top: 90px;
    padding-bottom: 60px;
  }
  .hero-inner .hero-visual { order: -1; }
  .hero-visual::before { width: 260px; height: 260px; }
  .hero-visual::after  { width: 200px; height: 200px; }
  .bottle-frame { width: 220px; }
  .pill { margin-left: auto; margin-right: auto; }
  .hero-text h1 { font-size: clamp(2.4rem, 7vw, 3.4rem); }
  .hero-desc { margin: 0 auto 28px; font-size: .9rem; }
  .hero-stats { justify-content: center; width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-text h1::after { margin: 14px auto 0; }

  /* Product */
  .product-inner { grid-template-columns: 1fr; gap: 40px; }
  .product-visual { order: -1; min-height: 300px; }
  .visual-ring-1 { width: 240px; height: 240px; }
  .visual-ring-2 { width: 190px; height: 190px; }
  .product-img { width: 200px; }
  .product-header { margin-bottom: 40px; }

  /* Social */
  .social-grid { grid-template-columns: 1fr; max-width: 420px; }

  /* Strip */
  .strip-sep { display: none; }
  .strip-inner { gap: 8px 16px; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; gap: 10px; }
  .footer-links { justify-content: center; }
}

/* ═══════════════════════════════
   MOBILE  (≤ 480px)
═══════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 18px; }

  /* Header */
  #header .header-inner { height: 60px; }
  .logo { font-size: 1.1rem; }

  /* Hero */
  .hero-inner { gap: 24px; padding-top: 80px; padding-bottom: 50px; }
  .bottle-frame { width: 180px; }
  .hero-visual::before { width: 220px; height: 220px; }
  .hero-visual::after  { width: 170px; height: 170px; }
  .hero-text h1 { font-size: 2.4rem; }
  .hero-badge { font-size: .68rem; padding: 7px 16px; }

  /* Stats — stack nicely on small phones */
  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 20px;
    padding: 16px 18px;
    width: 100%;
  }
  .stat-div { display: none; }
  .stat { text-align: center; min-width: 70px; }
  .stat span { font-size: 1.8rem; }

  /* Buttons — full width stack */
  .hero-cta,
  .cta-wrap { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta .btn,
  .cta-wrap .btn { justify-content: center; width: 100%; padding: 15px 20px; }

  /* Sections spacing */
  .product-section  { padding: 60px 0; }
  .questions-section { padding: 60px 0; }
  .contact-section  { padding: 60px 0; }
  .trust-section    { padding: 52px 18px; }

  /* Product */
  .product-header h2 { font-size: 1.7rem; }
  .product-subtitle  { font-size: .85rem; }
  .product-img { width: 170px; }
  .visual-ring-1 { width: 200px; height: 200px; }
  .visual-ring-2 { width: 160px; height: 160px; }

  /* Benefits 1 col */
  .benefits-grid { grid-template-columns: 1fr; gap: 10px; }
  .benefit-card  { padding: 14px 12px; }

  /* Steps 1 col */
  .steps { grid-template-columns: 1fr; gap: 10px; }

  /* Zones chips wrap */
  .zones-chips { gap: 6px; }
  .zones-chips span { font-size: .72rem; padding: 4px 12px; }

  /* Questions */
  .questions-grid { grid-template-columns: 1fr; gap: 10px; }
  .q-card { padding: 16px 14px; }

  /* Social */
  .social-card { padding: 16px 14px; }

  /* Footer */
  .footer { padding: 24px 0; }
  .footer-links { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .footer-links a { font-size: .72rem; }

  /* Trust quote */
  .trust-quote { font-size: 1.3rem; }

  /* Strip */
  .strip { padding: 16px 0; }
  .strip-item { font-size: .72rem; }
}
