/* ============================================
   PAGE ACCUEIL - styles spécifiques
   Palette crème glacée — tons chauds
   ============================================ */

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  overflow: hidden;
  background: radial-gradient(120% 80% at 80% 10%, rgba(232,96,122,0.25), transparent 60%),
              radial-gradient(100% 70% at 10% 90%, rgba(201,123,58,0.2), transparent 60%),
              linear-gradient(180deg, #FFF8F0 0%, #FDF6EC 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.7; }
.blob-1 { width: 520px; height: 520px; background: var(--strawberry-soft); top: -100px; right: -120px; opacity: 0.4; }
.blob-2 { width: 420px; height: 420px; background: var(--peach); bottom: -120px; left: -80px; opacity: 0.45; }
.blob-3 { width: 320px; height: 320px; background: var(--caramel-light); top: 40%; left: 35%; opacity: 0.2; }

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }

.hero-copy h1 { margin: 22px 0 30px; }
.hero-hl {
  background: linear-gradient(135deg, var(--strawberry) 0%, var(--caramel) 60%, var(--rose-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-feature-settings: "ss01";
}
.hero-p { font-size: clamp(16px, 1.4vw, 19px); max-width: 44ch; color: var(--ink-soft); margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 16px; margin-bottom: 60px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; padding-top: 32px; border-top: 1px solid var(--line); }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-display); font-size: 40px; font-weight: 500; letter-spacing: -0.03em; color: var(--chocolate); }
.hero-stats small { font-size: 12px; color: var(--ink-soft); font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }

/* Hero visual stack */
.hero-visual { position: relative; height: 600px; }
.hero-stack { position: relative; height: 100%; }
.hero-card {
  position: absolute;
  border-radius: var(--radius);
  background: rgba(255,248,240,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201,123,58,0.2);
  padding: 14px;
  box-shadow: 0 30px 60px -20px rgba(107,58,31,0.2), 0 0 40px -10px rgba(232,96,122,0.15);
  width: 280px;
  animation: float 8s ease-in-out infinite;
}
.hero-card .ph { aspect-ratio: 4/5; }
.hc-tag { display: flex; justify-content: space-between; align-items: center; padding: 14px 6px 4px; }
.hc-price { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--chocolate); }
.hc-1 { top: 0; right: 0; z-index: 3; }
.hc-2 { top: 100px; left: 0; z-index: 2; transform: rotate(-6deg); animation-delay: -3s; }
.hc-3 { bottom: 0; right: 60px; z-index: 1; transform: rotate(4deg); animation-delay: -5s; }

.hero-orbit { position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%); width: 200px; height: 200px; z-index: 0; animation: spin 30s linear infinite; }
.hero-orbit svg { width: 100%; height: 100%; }
.hero-orbit text { fill: var(--caramel); opacity: 0.7; }
@keyframes spin { to { transform: translateX(-50%) rotate(360deg); } }

.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); z-index: 5; }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(180deg, var(--ink-soft) 0%, transparent 100%); position: relative; overflow: hidden; }
.hero-scroll-line::after { content: ""; position: absolute; top: -40px; width: 1px; height: 20px; background: var(--caramel); box-shadow: 0 0 8px var(--caramel); animation: scroll-drop 2s ease-in-out infinite; }
@keyframes scroll-drop { 0% { top: -20px; opacity: 0; } 50% { opacity: 1; } 100% { top: 40px; opacity: 0; } }

/* MARQUEE */
.marquee-strip {
  background: linear-gradient(90deg, var(--strawberry), var(--chocolate), var(--caramel), var(--strawberry));
  background-size: 300% 100%;
  animation: hue-shift 12s linear infinite;
  color: var(--vanilla);
  padding: 22px 0;
  overflow: hidden;
  border-block: 1px solid rgba(201,123,58,0.2);
}
@keyframes hue-shift { to { background-position: 300% 0; } }
.marquee-strip .marquee { font-family: var(--font-display); font-size: clamp(28px, 4vw, 56px); font-style: italic; font-weight: 500; }
.marquee-strip span { white-space: nowrap; }

/* SECTION HEAD */
.section-head { max-width: 720px; margin-bottom: 80px; }
.section-head h2 { margin: 22px 0 26px; }

/* CATEGORIES */
.cats { background: var(--cream); }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cat-card {
  position: relative;
  background: #FFF8F0;
  border: 1px solid rgba(201,123,58,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s, border-color .5s;
  display: flex;
  flex-direction: column;
}
.cat-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px -20px rgba(232,96,122,0.25), 0 0 0 1px rgba(201,123,58,0.25); border-color: rgba(201,123,58,0.35); }
.cat-card .cat-img { aspect-ratio: 4/3; border-radius: 0; }
.cat-body { padding: 36px 32px 40px; position: relative; }
.cat-num {
  position: absolute;
  top: -24px;
  right: 32px;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--strawberry), var(--magenta));
  color: var(--vanilla);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 24px -6px rgba(232,96,122,0.5);
}
.cat-body h3 { margin-bottom: 14px; }
.cat-body p { margin-bottom: 20px; }
.cat-meta { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); }
.cat-arrow { position: absolute; right: 32px; bottom: 32px; width: 44px; height: 44px; border-radius: 50%; background: rgba(201,123,58,0.12); color: var(--caramel); display: grid; place-items: center; font-size: 18px; transition: transform .35s, background .35s, color .35s; }
.cat-card:hover .cat-arrow { background: var(--caramel); color: var(--vanilla); transform: rotate(-45deg); }

/* BESTSELLERS */
.best { background: linear-gradient(180deg, var(--cream) 0%, #FFF0E0 100%); }
.best-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; gap: 40px; flex-wrap: wrap; }
.best-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.prod { display: flex; flex-direction: column; gap: 18px; }
.prod-media { display: block; position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; transition: transform .5s; }
.prod-media:hover { transform: scale(1.02); }
.prod-media .ph { border-radius: 0; height: 100%; width: 100%; }
.prod-fav { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; background: rgba(253,246,236,0.85); border: 1px solid rgba(201,123,58,0.25); color: var(--strawberry); display: grid; place-items: center; backdrop-filter: blur(8px); font-size: 16px; transition: transform .25s, background .25s, color .25s; }
.prod-fav:hover { background: var(--strawberry); color: var(--vanilla); transform: scale(1.1); }
.prod-top { display: flex; justify-content: space-between; gap: 14px; align-items: baseline; }
.prod h4 { font-family: var(--font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.015em; color: var(--chocolate); }
.prod-price { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--caramel); }
.prod-body p { font-size: 14px; margin-bottom: 8px; }

/* STORY */
.story { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.story-images { position: relative; height: 640px; }
.story-images .ph { position: absolute; border-radius: var(--radius); }
.si-1 { width: 70%; height: 60%; top: 0; left: 0; }
.si-2 { width: 50%; height: 45%; bottom: 0; right: 0; z-index: 2; }
.si-3 { width: 40%; height: 35%; top: 30%; right: 8%; z-index: 3; border: 8px solid var(--cream); }
.story-quote { position: absolute; bottom: 6%; left: 6%; font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 30px); color: var(--caramel); background: rgba(253,246,236,0.92); border: 1px solid rgba(201,123,58,0.3); padding: 14px 22px; border-radius: 999px; backdrop-filter: blur(8px); z-index: 4; }
.story-copy h2 { margin: 22px 0 28px; }
.story-points { display: flex; flex-direction: column; gap: 10px; margin: 36px 0; padding: 28px 0; border-block: 1px solid var(--line); color: var(--ink-soft); font-size: 15px; }
.story-points strong { color: var(--caramel); margin-right: 10px; }

/* PROCESS */
.process {
  background:
    radial-gradient(80% 60% at 20% 30%, rgba(232,96,122,0.18), transparent 60%),
    radial-gradient(70% 80% at 90% 90%, rgba(201,123,58,0.15), transparent 60%),
    linear-gradient(180deg, #FFF0E0 0%, #FAE8D0 100%);
}
.process .eyebrow { color: var(--caramel); }
.process h2 { color: var(--chocolate); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.process-step { padding: 40px 28px; background: rgba(255,248,240,0.8); backdrop-filter: blur(10px); border: 1px solid rgba(201,123,58,0.18); border-radius: var(--radius); position: relative; transition: background .4s, transform .4s, border-color .4s; }
.process-step:hover { background: rgba(232,96,122,0.06); border-color: rgba(232,96,122,0.3); transform: translateY(-6px); }
.ps-num { font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.15em; color: var(--caramel); margin-bottom: 28px; display: block; }
.process-step h3 { color: var(--chocolate); margin-bottom: 14px; font-size: 26px; }
.process-step p { color: var(--ink-soft); font-size: 14px; }

/* TESTIMONIALS */
.testi { background: linear-gradient(180deg, #FAE8D0 0%, var(--cream) 100%); }
.testi .section-head { text-align: center; }
.testi-grid { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 24px; align-items: center; }
.t-card { background: #FFF8F0; border: 1px solid rgba(201,123,58,0.15); border-radius: var(--radius); padding: 36px 32px; }
.t-card blockquote { font-family: var(--font-display); font-size: 19px; font-style: italic; line-height: 1.45; margin-bottom: 24px; color: var(--chocolate); }
.t-card figcaption { display: flex; flex-direction: column; gap: 2px; }
.t-card strong { font-size: 14px; color: var(--strawberry); }
.t-card span { font-size: 12px; font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.t-feature { background: linear-gradient(135deg, var(--strawberry), var(--chocolate) 60%, var(--caramel)); color: var(--vanilla); padding: 48px 40px; transform: scale(1.06); border: 1px solid rgba(245,230,200,0.25); box-shadow: 0 30px 80px -30px rgba(232,96,122,0.4); }
.t-feature blockquote { font-size: 22px; color: var(--vanilla); }
.t-feature strong { color: var(--caramel-light); }
.t-feature span { color: rgba(245,230,200,0.65); }
.t-stars { color: var(--caramel); margin-bottom: 18px; display: block; letter-spacing: 4px; }

/* CTA */
.cta { background: var(--cream); padding-bottom: 0; }
.cta-card {
  background:
    radial-gradient(80% 60% at 20% 30%, rgba(232,96,122,0.4), transparent 65%),
    radial-gradient(70% 80% at 90% 90%, rgba(201,123,58,0.35), transparent 60%),
    linear-gradient(135deg, var(--strawberry) 0%, var(--chocolate) 60%, var(--caramel) 100%);
  color: var(--vanilla);
  border-radius: var(--radius);
  padding: clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245,230,200,0.2);
  box-shadow: 0 40px 100px -30px rgba(107,58,31,0.35);
}
.cta-card h2 { color: var(--vanilla); margin: 20px 0 24px; }
.cta-card p { color: rgba(245,230,200,0.88); margin-bottom: 36px; max-width: 56ch; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-ghost { color: var(--vanilla); border-color: rgba(245,230,200,0.4); }
.cta-ghost:hover { background: var(--vanilla); color: var(--chocolate); }
.cta-shape { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.45; }
.cs-1 { width: 360px; height: 360px; background: var(--strawberry-soft); top: -100px; right: -80px; }
.cs-2 { width: 240px; height: 240px; background: var(--caramel-light); bottom: -60px; left: 20%; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 500px; }
  .hero-card { width: 220px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .best-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-images { height: 480px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .t-feature { transform: none; }
}
@media (max-width: 640px) {
  .hero-stats { gap: 20px; }
  .hero-stats strong { font-size: 28px; }
  .hero-card { width: 200px; }
  .cat-grid, .best-grid, .process-grid { grid-template-columns: 1fr; }
}
