/* ═══════════════════════════════════════════════════
   BIBÀ — Design System v2 (Modern Glow)
   ═══════════════════════════════════════════════════ */

:root {
  --coral:       #E8602A;
  --coral-light: #FFF0EA;
  --coral-mid:   #FFD4B8;
  --bg:          #FFF8F5;
  --ink:         #1A0A04;
  --ink-60:      rgba(26,10,4,.6);
  --ink-40:      rgba(26,10,4,.4);
  --gold:        #C9A96E;
  --green-wa:    #25D366;
  --dark:        #1A0A04;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  cursor: none;
  overflow-x: hidden;
  overscroll-behavior-y: contain;
}

img { display: block; max-width: 100%; }

/* Utility */
.mx-auto { margin-left: auto; margin-right: auto; }
.px-6    { padding-left: 1.5rem; padding-right: 1.5rem; }

/* ─── Skip link (accessibility) ─────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 12px 22px;
  background: #C9A96E;
  color: #FDFBF7;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  z-index: 10001;
  border-radius: 0 0 6px 0;
  transition: top .18s ease;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ─── Focus styles ───────────────────────────────────── */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid #C9A96E;
  outline-offset: 3px;
  border-radius: 3px;
}
.btn:focus-visible { outline-offset: 5px; }
a:focus-visible, button:focus-visible { border-radius: 3px; }

/* ─── Grain overlay ─────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  mix-blend-mode: multiply;
}

/* ─── Custom cursor ─────────────────────────────────── */
#cursor {
  position: fixed;
  width: 7px; height: 7px;
  background: #C9A96E;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform .08s linear, width .25s ease, height .25s ease, background .25s ease;
}
#cursor-ring {
  position: fixed;
  width: 28px; height: 28px;
  border: 1px solid rgba(201,169,110,0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .42s cubic-bezier(.2,.65,.2,1), width .3s ease, height .3s ease, opacity .3s ease;
}
body:has(a:hover) #cursor,
body:has(button:hover) #cursor { width: 12px; height: 12px; background: #A8823E; }
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring { width: 44px; height: 44px; opacity: .6; }

/* ─── Page entrance animations ───────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.enter-0 { opacity: 0; animation: fadeUp .9s cubic-bezier(.2,.7,.2,1) .1s  forwards; }
.enter-1 { opacity: 0; animation: fadeUp .9s cubic-bezier(.2,.7,.2,1) .25s forwards; }
.enter-2 { opacity: 0; animation: fadeUp .9s cubic-bezier(.2,.7,.2,1) .42s forwards; }
.enter-3 { opacity: 0; animation: fadeUp .9s cubic-bezier(.2,.7,.2,1) .58s forwards; }
.enter-4 { opacity: 0; animation: fadeIn  .9s ease                    .72s forwards; }

/* ─── Marquee ticker ─────────────────────────────────── */
.marquee-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

/* ─── Navigation ───────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 16px;
  background: var(--bg);
}
#site-header.is-scrolled { /* kept for js/main.js compatibility */ }

.site-nav {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,248,245,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(232,96,42,.12);
  border-radius: 100px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 24px rgba(26,10,4,.07);
}

.nav-logo {
  font-size: 17px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--coral); }

.nav-links {
  display: none;
  gap: 20px;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-60);
  text-decoration: none;
  transition: color .2s;
  letter-spacing: 0;
}
.nav-link::after { display: none; }
.nav-link:hover { color: var(--coral); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--coral);
  color: #fff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background .2s;
}
.nav-cta:hover { background: #d04f1f; }

#nav-mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 12px 20px 16px;
  font-size: 15px;
  border-top: 1px solid rgba(26,10,4,.06);
  margin-top: 10px;
}
#nav-mobile.open { display: flex; }

/* Mobile: hide links, show toggle */
.nav-links { display: none; }
#site-header { padding: 8px 12px; }

@media (min-width: 641px) {
  .nav-links { display: flex; }
  #nav-toggle { display: none; }
  #site-header { padding: 12px 16px; }
}

/* ─── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 14px;
  line-height: 1; letter-spacing: 0.03em;
  cursor: none; border: 1px solid transparent; white-space: nowrap;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: #C9A96E; color: #FDFBF7;
  box-shadow: 0 6px 20px -10px rgba(201,169,110,0.65);
}
.btn-gold:hover { background: #B8955C; box-shadow: 0 14px 32px -14px rgba(201,169,110,0.75); }

.btn-outline {
  background: transparent; color: #2C221E;
  border-color: rgba(44,34,30,0.2);
}
.btn-outline:hover { border-color: #2C221E; }


.btn-sm { padding: 10px 18px; font-size: 13px; }

.link-u {
  font-size: 13px; color: #2C221E;
  border-bottom: 1px solid rgba(44,34,30,0.22); padding-bottom: 2px;
  transition: border-color .25s, color .25s; cursor: none;
}
.link-u:hover { color: #C9A96E; border-color: #C9A96E; }

/* ─── Hero ─────────────────────────────────────────── */
/* ─── Hero split layout ──────────────────────────────── */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 20px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.hero-content { display: flex; flex-direction: column; }

.hero-tag {
  display: inline-flex;
  align-self: center;
  align-items: center;
  gap: 7px;
  background: rgba(232,96,42,.08);
  border: 1px solid rgba(232,96,42,.2);
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
  font-size: 10px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-tag-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}

.hero-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 8vw, 52px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 16px;
  text-align: center;
}
.hero-h1 em {
  color: var(--coral);
  font-style: italic;
}

.hero-sub {
  font-size: 15px;
  color: var(--ink-60);
  line-height: 1.65;
  max-width: 400px;
  margin-bottom: 28px;
  font-weight: 400;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--coral);
  color: #fff;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 28px -8px rgba(232,96,42,.5);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-primary:hover {
  background: #d04f1f;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(232,96,42,.6);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 13px 22px;
  border: 1.5px solid rgba(26,10,4,.12);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-60);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); }

/* Stats */
.hero-stats {
  display: flex;
  border-top: 1px solid rgba(26,10,4,.07);
  padding-top: 28px;
  gap: 0;
  justify-content: center;
}
.hero-stat {
  text-align: center;
  padding: 0 16px;
  margin-right: 24px;
  border-right: 1px solid rgba(26,10,4,.08);
}
.hero-stat:last-child { border-right: none; margin-right: 0; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.hero-stat-num span { color: var(--coral); }
.hero-stat-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-40);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Hero image (right column) */
.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 80px -24px rgba(26,10,4,.22);
  order: -1;
}
.hero-visual-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.hero-visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,248,245,.92);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 4px 20px rgba(26,10,4,.1);
}
.hero-visual-badge-num {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--coral);
  line-height: 1;
}
.hero-visual-badge-txt {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-60);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Product cards row below the split */
.hero-products-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 48px;
}
.hero-products {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-direction: column;
  max-width: 360px;
  margin: 0 auto;
}
.hero-prod-card {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 4px 20px rgba(26,10,4,.08), 0 0 0 1px rgba(26,10,4,.04);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}
.hero-prod-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(26,10,4,.12), 0 0 0 1px rgba(232,96,42,.12);
}
.hero-prod-img {
  width: 48px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--coral-mid);
  flex-shrink: 0;
}
.hero-prod-name  { font-size: 12px; font-weight: 700; color: var(--ink); }
.hero-prod-desc  { font-size: 10px; color: var(--ink-40); margin-top: 2px; }
.hero-prod-price { font-size: 13px; font-weight: 700; color: var(--coral); margin-top: 4px; }

/* Mobile defaults already set above — tablet/desktop enhancements */
.hero-products-wrap { padding: 0 16px 36px; }
.hero-prod-card { padding: 10px 12px; }

@media (min-width: 641px) {
  .hero-products { flex-direction: row; flex-wrap: wrap; max-width: none; margin: 0; }
  .hero-prod-card { padding: 14px; }
}

@media (min-width: 769px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    padding: 60px 24px 40px;
  }
  .hero-visual { order: 0; }
  .hero-visual-img { height: 520px; }
  .hero-tag { align-self: flex-start; }
  .hero-h1 { text-align: left; font-size: clamp(40px, 5vw, 64px); }
  .hero-sub { text-align: left; margin-left: 0; margin-right: 0; }
  .hero-ctas { justify-content: flex-start; flex-direction: row; align-items: flex-start; }
  .hero-stats { justify-content: flex-start; }
  .hero-stat { text-align: left; padding: 0 24px 0 0; }
  .hero-products-wrap { padding: 0 24px 48px; }
}

/* ─── Product cards (Pack Glow) ──────────────────────── */
.prod-card {
  border-radius: 3px; position: relative; overflow: hidden;
  box-shadow: 0 20px 55px -30px rgba(44,34,30,.32);
  aspect-ratio: 3/4;
}
.prod-curcuma {
  background:
    radial-gradient(75% 45% at 50% 18%, rgba(255,255,255,.58), transparent 58%),
    linear-gradient(175deg,#F7E5BF 0%,#EAC985 55%,#D8AE5A 100%);
}
.prod-kojic {
  background:
    radial-gradient(75% 45% at 50% 18%, rgba(255,255,255,.55), transparent 55%),
    linear-gradient(175deg,#EDE7D8 0%,#D8CEBC 58%,#C4B89E 100%);
}
.prod-card .p-tag {
  position: absolute; top: 13px; left: 13px;
  font-size: 9.5px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(44,34,30,.6); background: rgba(253,251,247,.72);
  padding: 4px 10px; border-radius: 100px;
  border: 1px solid rgba(44,34,30,.07);
  font-family: 'DM Sans', sans-serif;
}
.prod-card .p-label {
  position: absolute; left: 15px; right: 15px; bottom: 16px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 10px;
}
.prod-card .p-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; line-height: 1.1; color: #2C221E; font-weight: 400;
}
.prod-card .p-qty {
  font-size: 9px; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(44,34,30,.5); font-family: 'DM Sans', sans-serif;
}
.pad-stack {
  position: absolute; left: 50%; top: 36%;
  transform: translateX(-50%);
  width: 54%; aspect-ratio: 1/1; border-radius: 50%;
  background: radial-gradient(circle, #F0E8D6 0%, #E3D8C2 55%, #CFBFA0 100%);
  box-shadow:
    inset 0 3px 10px rgba(44,34,30,.08),
    0 6px 0 -1px #E5DACC,
    0 12px 0 -3px #D8CEBC,
    0 18px 0 -6px #C9BEAB;
}

/* ─── Ingredient cards ───────────────────────────────── */
.ing-card {
  background: #fff; border-radius: 3px;
  border: 1px solid rgba(44,34,30,.05);
  box-shadow: 0 1px 2px rgba(44,34,30,.03), 0 10px 36px -22px rgba(44,34,30,.18);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease;
  position: relative; overflow: hidden;
}
.ing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 2px rgba(44,34,30,.03), 0 24px 52px -26px rgba(44,34,30,.22);
}
.ing-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px; font-weight: 300; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(201,169,110,.15);
  position: absolute; right: -10px; bottom: -18px;
  pointer-events: none; user-select: none;
  letter-spacing: -0.04em;
}

/* ─── Testimonials ───────────────────────────────────── */
.testimonials-scroll {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: none;
}
.testimonials-scroll::-webkit-scrollbar { display: none; }
.testimonials-scroll > * { flex: 0 0 85vw; scroll-snap-align: start; }

@media (min-width: 768px) {
  .testimonials-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }
  .testimonials-scroll > * { flex: none; }
}
.testi-card {
  background: #fff; border-radius: 3px;
  border: 1px solid rgba(44,34,30,.05);
  box-shadow: 0 1px 2px rgba(44,34,30,.03), 0 10px 36px -22px rgba(44,34,30,.18);
}
.quote-glyph {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 52px; line-height: 1; color: #C9A96E; opacity: .4;
}

/* ─── Scroll reveal ──────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .07s; }
.d2 { transition-delay: .14s; }
.d3 { transition-delay: .21s; }

/* ─── Footer ────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  padding: 48px 24px 32px;
  color: rgba(255,255,255,.5);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  letter-spacing: .02em;
  margin-bottom: 6px;
}
.footer-brand-name span { color: var(--coral); }

.footer-brand-desc {
  font-size: 12px;
  line-height: 1.6;
  max-width: 220px;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  cursor: none;
  transition: color .2s;
  touch-action: manipulation;
}
.footer-link:hover { color: var(--coral); }

.footer-bottom {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,.3);
}

@media (min-width: 641px) {
  .footer-inner { flex-direction: row; gap: 32px; }
  .footer-bottom { flex-direction: row; text-align: left; }
}

/* ─── Global responsive (mobile-first) ──────────────── */
/* Mobile defaults */
.section-wrap { padding: 36px 16px; }
.section-title { font-size: clamp(22px, 6vw, 30px); }
.btn-primary, .btn-ghost { width: 100%; max-width: 280px; justify-content: center; }

@media (min-width: 641px) {
  .section-wrap { padding: 52px 24px; }
  .section-title { font-size: clamp(32px, 5vw, 48px); }
  .btn-primary, .btn-ghost { width: auto; max-width: none; }
}

/* ─── Utilities ──────────────────────────────────────── */

/* ─── Floating WhatsApp button ───────────────────────── */
#float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  /* iOS safe area support */
  bottom: max(24px, calc(env(safe-area-inset-bottom) + 16px));
  z-index: 500;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366;
  box-shadow: 0 8px 28px -8px rgba(37,211,102,.7);
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  touch-action: manipulation;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
  animation: fadeIn .6s ease 1.2s both;
}
#float-wa:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 14px 36px -10px rgba(37,211,102,.75); }

/* ─── CTA Final ─────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #E8602A 0%, #C94E1A 50%, #FF8C5A 100%);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}

.cta-inner {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 400;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1.05;
  margin-bottom: 14px;
}

.cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin-bottom: 32px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--coral);
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .01em;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
  transition: transform .25s, box-shadow .25s;
  touch-action: manipulation;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,.2);
}

.cta-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}

.ornament-dots {
  background-image: radial-gradient(rgba(201,169,110,.14) 1px, transparent 1.5px);
  background-size: 20px 20px;
}

/* ─── Mobile nav animation ───────────────────────────── */
#nav-mobile {
  display: flex !important;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-top-color: transparent !important;
  transition:
    max-height .38s cubic-bezier(.2,.7,.2,1),
    opacity .28s ease,
    padding .32s ease,
    border-top-color .32s ease;
}
#nav-mobile.open {
  max-height: 220px;
  opacity: 1;
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
  border-top-color: rgba(44,34,30,.05) !important;
}
#nav-mobile a {
  min-height: 44px;
  display: flex;
  align-items: center;
  touch-action: manipulation;
}

@media (min-width: 768px) {
  #nav-mobile {
    display: none !important;
    max-height: none;
    opacity: 1;
    overflow: visible;
    transition: none;
  }
}

/* ─── Touch device overrides ─────────────────────────── */
@media (hover: none) {
  body { cursor: auto !important; }
  a, button, [role="button"] { cursor: pointer !important; }
  #cursor, #cursor-ring { display: none !important; }
}

/* ─── Buttons: tap optimization ──────────────────────── */
.btn {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ─── Touch targets: minimum 44px for interactive elements ── */
.btn-wa, .btn-card-wa, .btn-primary, .btn-ghost, .nav-cta { min-height: 44px; }

/* ─── Reduced motion ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .marquee-track {
    animation: none !important;
  }

  .enter-0, .enter-1, .enter-2, .enter-3, .enter-4 {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  #float-wa {
    animation: none !important;
    opacity: 1 !important;
  }

  .btn:hover { transform: none !important; }
  .ing-card:hover { transform: none !important; }

  #nav-mobile {
    transition: opacity .2s ease !important;
  }
}

/* ─── Boutique ─────────────────────────────────────── */
.boutique-section {
  background: var(--coral-light);
  padding: 52px 0;
}

.prod-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 400px;
  margin: 0 auto;
  gap: 14px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(26,10,4,.06);
  box-shadow: 0 2px 8px rgba(26,10,4,.04);
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px -8px rgba(26,10,4,.14);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.product-card-body {
  padding: 12px 14px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-cat-badge {
  display: inline-block;
  align-self: flex-start;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(232,96,42,.1);
  border: 1px solid rgba(232,96,42,.15);
  border-radius: 100px;
  padding: 1px 7px;
  font-size: 7.5px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-card-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.2;
}

.product-card-desc {
  font-size: 11px;
  color: var(--ink-40);
  margin-top: 3px;
  line-height: 1.4;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(26,10,4,.05);
}

.product-price {
  font-size: 14px;
  font-weight: 900;
  color: var(--coral);
  letter-spacing: -.01em;
}
.product-price span {
  font-size: .65em;
  font-weight: 600;
  color: var(--ink-40);
  vertical-align: middle;
}

.product-pack-badge {
  font-size: 9px;
  color: var(--ink-40);
  font-weight: 500;
  margin-top: 2px;
}

.btn-card-wa {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  border-radius: 100px;
  background: var(--green-wa);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(37,211,102,.35);
  transition: background .2s, transform .2s, box-shadow .2s;
  touch-action: manipulation;
}
.btn-card-wa:hover {
  background: #1cb856;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -4px rgba(37,211,102,.55);
}

@media (min-width: 641px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); max-width: none; margin: 0; }
  .product-card-img { aspect-ratio: 3/4; }
}
@media (min-width: 961px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }

/* ─── Hero photo frame ───────────────────────────────── */
.hero-photo-frame { position:relative; border-radius:4px; overflow:hidden; aspect-ratio:4/5; box-shadow:0 40px 100px -50px rgba(44,34,30,.32); }
.hero-photo-frame img { width:100%; height:100%; object-fit:cover; display:block; }
.hero-photo-frame::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg, transparent 60%, rgba(44,34,30,.22) 100%); pointer-events:none; }

/* ─── Before/After proof section ─────────────────────── */
.proof-pair { position:relative; border-radius:4px; overflow:hidden; }
.proof-pair img { width:100%; aspect-ratio:1/1; object-fit:cover; display:block; }
.proof-label { position:absolute; bottom:0; left:0; right:0; padding:14px 16px; background:linear-gradient(transparent, rgba(44,34,30,.7)); color:#F5EFE6; font-size:11px; letter-spacing:.2em; text-transform:uppercase; font-family:'DM Sans',sans-serif; }

/* ─── Packs skincare ────────────────────────────────── */
.section-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 36px 16px;
}

.section-divider {
  border: none;
  border-top: 1px solid rgba(26,10,4,.06);
  max-width: 900px;
  margin: 0 auto;
}

.section-header { text-align: center; margin: 0 auto 40px; max-width: 680px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--coral);
  display: inline-block;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 6vw, 30px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.08;
}
.section-title em { color: var(--coral); font-style: normal; }

.section-sub {
  font-size: 14px;
  color: var(--ink-60);
  margin-top: 10px;
  line-height: 1.65;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.packs-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 520px;
  margin: 0 auto;
  gap: 16px;
  align-items: stretch;
}

.pack-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid rgba(26,10,4,.07);
  box-shadow: 0 2px 4px rgba(26,10,4,.04), 0 12px 40px -16px rgba(26,10,4,.12);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.pack-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 2px 4px rgba(26,10,4,.04), 0 24px 56px -16px rgba(26,10,4,.18);
}
.pack-card--featured {
  border-color: rgba(232,96,42,.3);
  box-shadow: 0 2px 4px rgba(26,10,4,.04), 0 12px 40px -16px rgba(26,10,4,.1),
              0 0 0 1px rgba(232,96,42,.15);
}

.pack-ribbon {
  padding: 10px 18px;
  text-align: center;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: #fff;
}
.pack-ribbon--coral { background: var(--coral); }
.pack-ribbon--ink   { background: var(--ink); }
.pack-ribbon--luxe  {
  background: linear-gradient(100deg, #1A1209 0%, #2C221E 40%, #3D2E24 100%);
  color: var(--gold);
  letter-spacing: .36em;
}

.pack-img-area {
  position: relative;
  padding: 16px 16px 0;
  height: 160px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

@media (min-width: 961px) {
  .pack-img-area { height: 190px; }
}
.pack-img-area--5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}
.pack-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(26,10,4,.06);
}

.pack-save {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(26,10,4,.82);
  color: #F5EFE6;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.pack-save--coral { background: var(--coral); color: #fff; }
.pack-save--gold  { background: var(--gold);  color: #fff; }

.pack-body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pack-ritual {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-top: 2px;
}

.pack-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-top: 10px;
  line-height: 1.15;
}
.pack-name em { color: var(--coral); font-style: normal; }

.pack-tagline {
  font-size: 12px;
  color: var(--ink-60);
  line-height: 1.55;
  margin-top: 5px;
}

.pack-items {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pack-items li {
  font-size: 12px;
  color: var(--ink-60);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pack-step {
  flex-shrink: 0;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral);
  min-width: 60px;
}

.pack-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(26,10,4,.06);
}

.pack-price-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.pack-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--coral);
  letter-spacing: -.01em;
  line-height: 1;
}
.pack-price-old {
  font-size: 11px;
  color: var(--ink-40);
  text-decoration: line-through;
  margin-top: 2px;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 100px;
  background: var(--green-wa);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px -6px rgba(37,211,102,.55);
  transition: background .2s, transform .25s, box-shadow .25s;
  touch-action: manipulation;
}
.btn-wa:hover {
  background: #1cb856;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(37,211,102,.65);
}

.pack-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-40);
  margin-top: 20px;
}

@media (min-width: 961px) {
  .packs-grid { grid-template-columns: repeat(3, 1fr); max-width: none; margin: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .pack-card:hover { transform: none !important; }
}
@media (hover: none) {
  .btn-wa { cursor: pointer !important; }
}

/* ─── Avant / Après ────────────────────────────────── */
.ba-section {
  background: var(--dark);
  padding: 52px 0;
}
.ba-section .section-title { color: #fff; }
.ba-section .section-sub   { color: rgba(255,255,255,.5); }
.ba-section .eyebrow       { color: var(--coral); }
.ba-section .eyebrow-dot   { background: var(--coral); }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 400px;
  margin: 0 auto;
  gap: 16px;
}

.ba-card {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.ba-imgs { display: grid; grid-template-columns: 1fr 1fr; }
.ba-imgs--full { grid-template-columns: 1fr; }

.ba-img {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
  display: block;
}

.ba-label {
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ba-duration {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  letter-spacing: .15em;
  text-transform: uppercase;
}
.ba-result {
  font-size: 11px;
  font-weight: 700;
  color: var(--coral);
}

@media (min-width: 769px) { .ba-grid { grid-template-columns: repeat(3, 1fr); max-width: none; margin: 0; } }

/* ─── Avis clients ──────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 480px;
  margin: 0 auto;
  gap: 16px;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1.5px solid rgba(26,10,4,.06);
  box-shadow: 0 2px 12px rgba(26,10,4,.04);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: var(--coral);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 13px;
  color: var(--ink-60);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
  margin-bottom: 16px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(26,10,4,.06);
}

.review-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--coral-light);
  border: 2px solid rgba(232,96,42,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--coral);
  flex-shrink: 0;
}

.review-name { font-size: 12px; font-weight: 700; color: var(--ink); }
.review-pack { font-size: 10px; color: var(--ink-40); margin-top: 2px; }

@media (min-width: 769px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); max-width: none; margin: 0; } }

/* ─── Ingrédients ──────────────────────────────────── */
.ingr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ingr-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  border: 1.5px solid rgba(26,10,4,.06);
  box-shadow: 0 2px 8px rgba(26,10,4,.03);
  transition: transform .25s, box-shadow .25s;
}
.ingr-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px -8px rgba(26,10,4,.1);
}

.ingr-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.ingr-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.01em;
}

.ingr-desc {
  font-size: 11px;
  color: var(--ink-40);
  margin-top: 5px;
  line-height: 1.5;
}

@media (min-width: 769px) { .ingr-grid { grid-template-columns: repeat(4, 1fr); } }
