/* =============================================================
   ✦ DA MALIKA — "Voile Sacré"
   Palette : Or mat sur Ivoire perle, profondeur Prune-Aubergine
   Typo : Italiana (display) + Cormorant Garamond (serif) + Manrope (sans)
   Forme : pill buttons, cards radius 24px, halos chauds
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Manrope:wght@300;400;500;600;700&family=Marcellus&display=swap');

:root {
  /* --- Palette Voile Sacré (override total) --- */
  --or-mat: #B89968;
  --or-vif: #D4B16A;
  --or-profond: #6B5328;
  --or-glow: #E8C988;
  --prune: #4A2C44;
  --prune-doux: #6B4661;
  --aubergine: #2E1A2C;
  --aubergine-nuit: #1F1426;
  --ivoire: #FBF7EE;
  --perle: #F2EDDF;
  --sable: #E8DFCA;
  --encre: #2B1F26;
  --encre-doux: #5C4854;

  /* --- Override vars Sophroconnect --- */
  --gold: var(--or-mat);
  --gold-deep: var(--or-profond);
  --gold-light: var(--or-vif);
  --gold-soft: var(--perle);
  --night: var(--aubergine-nuit);
  --night-2: var(--aubergine);
  --cobalt: var(--prune);
  --cobalt-light: var(--prune-doux);
  --cream: var(--ivoire);
  --cream-2: var(--perle);
  --rose-soft: #F0E4D8;
  --rose: var(--prune);
  --emerald: var(--or-profond);
  --text: var(--encre);
  --muted: var(--encre-doux);
  --shadow: rgba(30, 22, 15, 0.10);
  --shadow-strong: rgba(43, 31, 38, 0.22);

  /* --- Or Spirituel (compat J1) --- */
  --or-pur: var(--or-mat);
  --or-clair: var(--or-vif);
  --beige-sacre: var(--ivoire);
  --beige-profond: var(--perle);
  --noir-divin: var(--aubergine-nuit);
  --argent-lune: #BFB5C2;
}

/* --- Body --- */
body {
  font-family: 'Manrope', -apple-system, sans-serif;
  background: var(--ivoire);
  color: var(--encre);
  font-weight: 400;
}

/* --- Texture papier subtile partout --- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212, 177, 106, 0.04), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(74, 44, 68, 0.05), transparent 50%);
  mix-blend-mode: multiply;
}

/* --- Display fonts : Italiana pour grands titres --- */
h1, h2, .quote-text, .footer-brand h3, .nav-brand {
  font-family: 'Italiana', 'Cormorant Garamond', serif !important;
  font-weight: 400;
  letter-spacing: 0.015em;
}

h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

h1 {
  font-weight: 400 !important;
  line-height: 1.05;
}

h1 em, h2 em {
  font-style: italic;
  font-family: 'Italiana', serif !important;
  color: var(--or-mat) !important;
  position: relative;
}

/* --- Cinzel → Marcellus (plus mystique, moins corporate) --- */
.cinzel {
  font-family: 'Marcellus', serif !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
}

.section-eyebrow, .hero-eyebrow, .role-label, .badge,
.testi-card .author, .footer-col h4 {
  font-family: 'Marcellus', serif !important;
  letter-spacing: 0.2em;
}

/* --- Boutons pill --- */
.btn {
  border-radius: 999px !important;
  padding: 16px 38px;
  font-family: 'Marcellus', serif !important;
  font-weight: 400;
  letter-spacing: 0.15em;
  font-size: 12.5px;
  transition: all .5s cubic-bezier(.22,.61,.36,1);
}

.btn-gold {
  background: linear-gradient(135deg, var(--or-mat) 0%, var(--or-vif) 100%) !important;
  color: #FFFCEC !important;
  border: 1px solid var(--or-glow) !important;
  box-shadow:
    0 4px 18px rgba(107, 83, 40, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 28px rgba(107, 83, 40, 0.32),
    inset 0 1px 0 rgba(255,255,255,0.3);
  filter: brightness(1.06);
}

.btn-outline {
  background: rgba(251, 247, 238, 0.5) !important;
  border: 1px solid var(--or-mat) !important;
  color: var(--encre) !important;
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: var(--or-mat) !important;
  color: var(--ivoire) !important;
  border-color: var(--or-mat) !important;
}

/* --- Cards radius 24 + bordure dorée subtile --- */
.soin-card, .testi-card, .pq-card, .axe-card, .form-card, .event-card,
.water-product, .contact-block {
  border-radius: 24px !important;
  border: 1px solid rgba(184, 153, 104, 0.18) !important;
  background: var(--ivoire) !important;
  transition: all .5s cubic-bezier(.22,.61,.36,1);
}

.soin-card {
  position: relative;
  padding: 42px 32px !important;
  background: linear-gradient(170deg, var(--ivoire) 0%, #F8F2E2 100%) !important;
}

.soin-card::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or-vif), transparent);
}

.soin-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(30, 22, 15, 0.14) !important;
  border-color: var(--or-mat) !important;
}

/* Suppression de la bande colorée qui glissait au hover (::after dans index.html) */
.soin-card::after { display: none !important; }
.signature-card::after { display: none !important; }

.signature-card {
  background: linear-gradient(170deg, #FCF6E5 0%, #F5E8C2 100%) !important;
  border: 1px solid var(--or-vif) !important;
  position: relative;
}

.signature-card::after {
  content: "✦";
  position: absolute;
  top: 18px; right: 22px;
  font-size: 24px;
  color: var(--or-vif);
  opacity: 0.5;
}

/* --- Badges pill --- */
.badge {
  border-radius: 999px !important;
  padding: 6px 18px !important;
  background: var(--perle) !important;
  color: var(--or-profond) !important;
  border: 1px solid rgba(184,153,104,.25);
  font-size: 10px !important;
}

.signature-badge {
  background: linear-gradient(135deg, var(--or-mat), var(--or-vif)) !important;
  color: var(--ivoire) !important;
  border: none !important;
}

/* --- Nav refonte --- */
.nav {
  padding: 26px 0;
}
.nav.scrolled {
  background: rgba(31, 20, 38, 0.92) !important;
  backdrop-filter: blur(18px) saturate(1.2);
  padding: 16px 0;
  border-bottom: 1px solid rgba(212, 177, 106, 0.18);
}

.nav-brand {
  font-family: 'Italiana', serif !important;
  font-size: 22px !important;
  color: var(--or-vif) !important;
  letter-spacing: 0.12em;
  text-transform: none !important;
  font-weight: 400 !important;
}

.logo-mark {
  background: radial-gradient(circle, var(--or-glow), var(--or-profond)) !important;
  border: none !important;
  color: var(--aubergine-nuit) !important;
  width: 36px !important;
  height: 36px !important;
  box-shadow: 0 0 18px rgba(232, 201, 136, 0.4);
  position: relative;
}

.nav-links a {
  font-family: 'Manrope', sans-serif !important;
  letter-spacing: 0.06em;
  text-transform: none !important;
  font-weight: 400 !important;
  font-size: 14px !important;
}

/* --- HERO : ambiance contemplative mystique --- */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% 35%, rgba(212, 177, 106, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(107, 70, 97, 0.4), transparent 70%),
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(74, 44, 68, 0.5), transparent 70%),
    linear-gradient(180deg, var(--aubergine-nuit) 0%, var(--aubergine) 60%, var(--prune) 100%) !important;
  position: relative;
}

.hero-bg-img { display: none !important; }

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 23% 18%, rgba(232, 201, 136, 0.9), transparent 40%),
    radial-gradient(1.5px 1.5px at 67% 38%, rgba(232, 201, 136, 0.7), transparent 40%),
    radial-gradient(1px 1px at 88% 72%, rgba(232, 201, 136, 0.6), transparent 40%),
    radial-gradient(1.5px 1.5px at 14% 84%, rgba(212, 177, 106, 0.5), transparent 40%),
    radial-gradient(2px 2px at 52% 92%, rgba(232, 201, 136, 0.8), transparent 40%),
    radial-gradient(1px 1px at 38% 60%, rgba(212, 177, 106, 0.4), transparent 40%),
    radial-gradient(1.5px 1.5px at 75% 12%, rgba(232, 201, 136, 0.6), transparent 40%);
  pointer-events: none;
  animation: shimmer 8s ease-in-out infinite alternate;
}

@keyframes shimmer {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}

.hero-eyebrow {
  font-family: 'Marcellus', serif !important;
  font-size: 13px !important;
  letter-spacing: 0.32em !important;
  color: var(--or-glow) !important;
  text-transform: uppercase;
}

.hero h1 {
  color: #FBF4D9 !important;
  text-shadow: 0 4px 28px rgba(0,0,0,0.4);
}

.hero h1 em {
  color: var(--or-glow) !important;
  font-style: italic;
}

.hero-sub {
  color: rgba(251, 244, 217, 0.8) !important;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.hero-tagline {
  font-family: 'Marcellus', serif;
  letter-spacing: 0.2em !important;
  color: var(--or-vif) !important;
  font-size: 12px !important;
}

/* --- Scroll cue : ↓ Descendre, oscillation douce --- */
.scroll-cue {
  font-family: 'Marcellus', serif !important;
  color: var(--or-glow) !important;
  letter-spacing: 0.4em !important;
  font-size: 10px !important;
  opacity: 0.72 !important;
  /* remplace floatY 2.6s par scrollCueSoft 4s */
  animation: scrollCueSoft 4s ease-in-out infinite !important;
}

@keyframes scrollCueSoft {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 7px); }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue { animation: none !important; }
}

/* --- Particles : changer hue --- */
#particles-bg {
  opacity: 0.35 !important;
  filter: hue-rotate(-15deg) saturate(0.55) brightness(1.1);
}

/* --- Quote section --- */
.quote-section {
  background: linear-gradient(180deg, var(--ivoire) 0%, var(--perle) 100%) !important;
  position: relative;
}

.quote-section::before { display: none !important; }

.quote-text {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic;
  color: var(--encre) !important;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem) !important;
  line-height: 1.55 !important;
}

.quote-text em {
  color: var(--or-profond) !important;
  font-weight: 500;
}

.quote-mark {
  color: var(--or-mat) !important;
  opacity: 0.25 !important;
  font-family: 'Italiana', serif !important;
}

.quote-author {
  font-family: 'Marcellus', serif !important;
  color: var(--or-profond) !important;
  letter-spacing: 0.2em;
}

/* --- About --- */
.about, section:not(.hero):not(.contact):not(.testimonials) {
  background: var(--ivoire);
}

.portrait-stack img {
  border-radius: 24px !important;
  filter: sepia(0.05) saturate(0.95);
}

.about-text h2 {
  color: var(--encre) !important;
  font-size: clamp(2rem, 4vw, 3rem);
}

.role-label {
  color: var(--or-profond) !important;
  font-size: 12px;
}

.credential {
  background: var(--perle) !important;
  border: 1px solid rgba(184,153,104,.2);
  border-radius: 999px;
  padding: 6px 16px;
}

.credential .dot {
  background: var(--or-mat) !important;
}

/* --- Sections gradient (Pour qui / 3 promesses) --- */
section[id="pour-qui"],
section[style*="cream-2"] {
  background: linear-gradient(180deg, var(--ivoire) 0%, var(--sable) 100%) !important;
}

/* --- Soins section : titre & sous-titre --- */
.section-title {
  color: var(--encre) !important;
}

.section-title em {
  color: var(--or-mat) !important;
  font-family: 'Italiana', serif !important;
}

.section-sub {
  color: var(--encre-doux) !important;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
}

.section-eyebrow {
  color: var(--or-profond) !important;
  font-size: 11px;
  letter-spacing: 0.3em !important;
}

.divider {
  background: linear-gradient(90deg, transparent, var(--or-mat), transparent) !important;
  height: 1px !important;
  width: 80px !important;
  margin: 14px auto !important;
}

.divider::before, .divider::after { display: none !important; }

.soin-card h3 {
  color: var(--encre) !important;
}

.soin-card p {
  color: var(--encre-doux);
}

.price {
  border-top: 1px solid rgba(184,153,104,.2) !important;
  margin-top: 22px;
  padding-top: 18px;
}

.price .amount {
  color: var(--or-profond) !important;
  font-family: 'Italiana', serif !important;
  font-size: 1.7rem !important;
  font-weight: 400 !important;
}

.price .label {
  color: var(--encre-doux);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

/* --- Testimonials --- */
.testimonials {
  background: linear-gradient(180deg, var(--perle) 0%, var(--ivoire) 100%) !important;
}

/* --- Carrousel témoignages : navigation calme manuelle --- */
.testi-carousel {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent) !important;
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent) !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  scroll-behavior: smooth !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  padding: 8px 0 24px !important;
  position: relative !important;
}
.testi-carousel::-webkit-scrollbar { display: none !important; }

.testi-track {
  /* On désactive l'auto-scroll infini : navigation manuelle uniquement */
  animation: none !important;
  padding: 0 max(28px, 12vw) !important;
  scroll-padding: 0 max(28px, 12vw) !important;
}

.testi-track .testi-card {
  scroll-snap-align: center !important;
}

/* --- Boutons de navigation discrets --- */
.testi-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.testi-nav button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--ivoire);
  border: 1px solid rgba(184, 153, 104, 0.35);
  color: var(--or-profond);
  font-size: 18px;
  cursor: pointer;
  transition: all .35s ease;
  font-family: 'Marcellus', serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.testi-nav button:hover {
  background: var(--or-mat);
  color: var(--ivoire);
  border-color: var(--or-mat);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(107, 83, 40, 0.22);
}
.testi-nav button:active { transform: translateY(0); }

.testi-card {
  background: var(--ivoire) !important;
  border: 1px solid rgba(184, 153, 104, 0.18) !important;
  border-radius: 24px !important;
  padding: 38px 30px !important;
  box-shadow: 0 2px 12px rgba(30, 22, 15, 0.06);
}

.testi-card .stars {
  color: var(--or-mat) !important;
}

.testi-card p {
  font-family: 'Cormorant Garamond', serif !important;
  color: var(--encre) !important;
  font-style: italic;
}

.testi-card .author {
  font-family: 'Marcellus', serif !important;
  color: var(--or-profond) !important;
  letter-spacing: 0.22em;
}

.testi-card.testi-audio {
  background: linear-gradient(150deg, var(--aubergine) 0%, var(--prune) 100%) !important;
  border: 1px solid var(--or-vif) !important;
  box-shadow: 0 8px 32px rgba(74, 44, 68, 0.25);
}

.testi-card.testi-audio .audio-label {
  font-family: 'Marcellus', serif !important;
  color: var(--or-glow) !important;
  letter-spacing: 0.3em;
}

.testi-card.testi-audio .audio-quote {
  font-family: 'Cormorant Garamond', serif !important;
  color: var(--or-glow) !important;
  font-size: 1.35rem !important;
  font-style: italic;
  line-height: 1.45;
  text-align: center;
  margin: 4px 8px 8px;
  letter-spacing: 0.01em;
}

.testi-card.testi-audio .author {
  font-family: 'Italiana', serif !important;
  color: var(--or-vif) !important;
  font-size: 1.8rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.testi-card.testi-audio .audio-duration {
  font-family: 'Marcellus', serif;
  color: var(--or-glow);
}

audio {
  filter: sepia(0.4) hue-rotate(-15deg) saturate(0.7) contrast(0.9);
  border-radius: 999px;
}

/* --- Contact section --- */
.contact {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212, 177, 106, 0.12), transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(107, 70, 97, 0.3), transparent 60%),
    linear-gradient(135deg, var(--aubergine-nuit) 0%, var(--prune) 100%) !important;
  color: var(--ivoire) !important;
}

.contact h2 {
  color: var(--ivoire) !important;
}

.contact .section-eyebrow {
  color: var(--or-glow) !important;
}

.contact p {
  color: rgba(251, 247, 238, 0.85);
}

.contact-block {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(212, 177, 106, 0.18) !important;
  border-radius: 18px !important;
  padding: 20px 24px !important;
  backdrop-filter: blur(6px);
}

.contact-block .lbl {
  color: var(--or-glow) !important;
  font-family: 'Marcellus', serif;
  letter-spacing: 0.18em;
  font-size: 10.5px;
}

.contact-block .val,
.contact-block a {
  color: var(--ivoire) !important;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem !important;
}

.contact-block a:hover { color: var(--or-glow) !important; }

.form-card {
  background: rgba(255, 252, 245, 0.04) !important;
  border: 1px solid rgba(212, 177, 106, 0.22) !important;
  backdrop-filter: blur(10px);
  border-radius: 24px !important;
}

.form-row label {
  font-family: 'Marcellus', serif;
  color: var(--or-glow) !important;
  letter-spacing: 0.14em;
  font-size: 11px;
}

.form-row input,
.form-row select,
.form-row textarea {
  background: rgba(251, 247, 238, 0.06) !important;
  border: 1px solid rgba(212, 177, 106, 0.25) !important;
  color: var(--ivoire) !important;
  border-radius: 12px !important;
  font-family: 'Manrope', sans-serif !important;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--or-vif) !important;
  background: rgba(251, 247, 238, 0.1) !important;
  outline: none !important;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(251, 247, 238, 0.45);
}

.form-note {
  color: rgba(251, 247, 238, 0.6) !important;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

/* --- Footer --- */
footer {
  background: var(--aubergine-nuit) !important;
  border-top: 1px solid rgba(212, 177, 106, 0.15);
}

.footer-brand h3 {
  font-family: 'Italiana', serif !important;
  color: var(--or-glow) !important;
  font-size: 2.2rem !important;
}

.footer-brand p {
  color: rgba(251, 247, 238, 0.65) !important;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.footer-col h4 {
  font-family: 'Marcellus', serif !important;
  color: var(--or-glow) !important;
  letter-spacing: 0.2em;
}

.footer-col a {
  font-family: 'Manrope', sans-serif !important;
  color: rgba(251, 247, 238, 0.7) !important;
}

.footer-col a:hover { color: var(--or-vif) !important; }

.footer-bottom {
  border-top: 1px solid rgba(212, 177, 106, 0.1) !important;
}

.footer-bottom .legal a {
  color: var(--or-vif) !important;
  font-family: 'Manrope', sans-serif;
  font-size: 12.5px;
}

.footer-bottom p {
  color: rgba(251, 247, 238, 0.5) !important;
  font-family: 'Manrope', sans-serif;
}

/* --- Selection highlight --- */
::selection {
  background: var(--or-vif);
  color: var(--aubergine-nuit);
}

/* --- Particules dorées remplacées par étoiles flottantes --- */
.hero-vignette {
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(31, 20, 38, 0.5) 100%) !important;
}

/* --- Liens inline --- */
em { color: var(--or-mat) !important; }

a { color: var(--or-profond); }
a:hover { color: var(--or-mat); }

/* --- Pour qui cards --- */
.pq-icon, .pq-card .pq-icon {
  background: linear-gradient(135deg, var(--or-mat), var(--or-vif)) !important;
  color: white !important;
}

/* --- Hide gold class (recolor) --- */
.gold { color: var(--or-mat) !important; }
.cobalt { color: var(--prune) !important; }

/* --- Mobile : ajuster --- */
@media (max-width: 720px) {
  .hero h1 { font-size: clamp(2.2rem, 9vw, 4rem) !important; }
  .btn { padding: 14px 28px; font-size: 11.5px; }
}


/* =============================================================
   ✦ NAV refonte — pill secondary + burger mobile
   ============================================================= */

.nav-burger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 1001;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--or-vif);
  transition: transform .35s ease, opacity .35s ease;
  border-radius: 2px;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Pills secondary CTAs (Compagnon IA / Espace / Offrir) */
.nav-secondary {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-pill {
  font-family: 'Marcellus', serif !important;
  font-size: 10.5px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  padding: 7px 14px !important;
  border-radius: 999px !important;
  background: rgba(212, 177, 106, 0.08) !important;
  border: 1px solid rgba(212, 177, 106, 0.3) !important;
  color: var(--or-vif) !important;
  text-decoration: none !important;
  transition: all .35s ease;
  white-space: nowrap;
}
.nav-pill::after { display: none !important; }
.nav-pill:hover {
  background: var(--or-mat) !important;
  color: var(--ivoire) !important;
  border-color: var(--or-mat) !important;
  transform: translateY(-1px);
}

/* Desktop : layout actuel + secondary inline */
@media (min-width: 921px) {
  .nav-links { gap: 24px; }
}

/* Tablette/mobile : burger ouvre menu plein écran */
@media (max-width: 920px) {
  .nav-burger { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, var(--aubergine-nuit) 0%, var(--aubergine) 60%, var(--prune) 100%);
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    gap: 28px !important;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform .45s cubic-bezier(.22,.61,.36,1);
    padding: 80px 32px 40px;
    overflow-y: auto;
  }
  .nav-links.is-open {
    transform: translateX(0);
  }
  .nav-links a:not(.nav-cta):not(.nav-pill) {
    display: inline-block !important;
    font-family: 'Italiana', serif !important;
    font-size: 1.6rem !important;
    color: var(--ivoire) !important;
    letter-spacing: 0.02em;
    text-transform: none !important;
    opacity: 0.92;
  }
  .nav-links a:not(.nav-cta):not(.nav-pill):hover {
    color: var(--or-glow) !important;
  }
  .nav-secondary {
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
  }
  .nav-cta {
    margin-top: 18px;
    padding: 14px 32px !important;
  }
}

/* Empêche le scroll body quand menu ouvert */
body.nav-open {
  overflow: hidden;
}


/* =============================================================
   ✦ NORMALISATION RADIUS — système strict
   Cards / sections : 24px · Inputs : 14px · Pills : 999px
   ============================================================= */

/* Cards principales (override 8px et 14px inline) */
.pq-card,
.soin-card,
.testi-card,
.axe-card,
.form-card,
.contact-block,
.event-card,
.water-product {
  border-radius: 24px !important;
}

/* Section "Pourquoi me choisir" inline cards → 24px */
section[style*="cream-2"] > .container > div > .fade-in[style*="background:var(--cream)"],
section[style*="cream-2"] > .container > div[style*="grid"] > .fade-in {
  border-radius: 24px !important;
}

/* Inputs/textarea/select — radius unifié 14px */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="password"],
input[type="search"],
textarea,
select {
  border-radius: 14px !important;
}

/* Mini badges / notifications statut */
.form-fb,
.form-fb.is-err,
.form-fb.is-ok {
  border-radius: 12px !important;
}

/* Newsletter footer — input cohérent */
#footer-nl-email {
  border-radius: 14px !important;
}
#footer-nl-btn {
  border-radius: 999px !important;
}


/* =============================================================
   ✦ PROMESSES — 3 piliers (refonte propre)
   ============================================================= */
.promesses {
  background: linear-gradient(180deg, var(--perle) 0%, var(--ivoire) 100%);
  padding: 110px 0;
}
.promesses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .promesses-grid { grid-template-columns: 1fr; gap: 28px; max-width: 600px; }
}
.promesse-card {
  background: var(--ivoire);
  padding: 56px 36px 44px;
  border-radius: 24px !important;
  border: 1px solid rgba(184, 153, 104, 0.18);
  position: relative;
  transition: all .5s cubic-bezier(.22,.61,.36,1);
}
.promesse-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(30, 22, 15, 0.12);
  border-color: var(--or-mat);
}
.promesse-glyph {
  position: absolute;
  top: -24px;
  left: 36px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--or-mat), var(--or-vif));
  color: var(--aubergine-nuit);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Italiana', serif;
  font-size: 1.5rem;
  box-shadow: 0 4px 18px rgba(107, 83, 40, 0.28);
}
.promesse-card h3 {
  color: var(--or-profond);
  margin: 14px 0 14px;
  font-size: 1.6rem;
  font-family: 'Cormorant Garamond', serif;
}
.promesse-card p {
  color: var(--encre-doux);
  font-size: 0.98rem;
  line-height: 1.65;
  font-family: 'Manrope', sans-serif;
}
.promesses-cta {
  text-align: center;
  margin-top: 64px;
}
.promesses-note {
  margin-top: 14px;
  color: var(--encre-doux);
  font-size: 0.88rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}


/* =============================================================
   ✦ FOOTER disclaimer LCEN intégré
   ============================================================= */
.footer-disclaimer {
  max-width: 760px;
  margin: 0 auto 20px;
  padding: 14px 22px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(251, 247, 238, 0.55) !important;
  text-align: center;
  border-top: 1px solid rgba(212, 177, 106, 0.12);
  border-bottom: 1px solid rgba(212, 177, 106, 0.12);
  font-style: italic;
}


/* =============================================================
   ✦ SOINS grid 3×2 forcé desktop (au lieu de 4+2 orphelin)
   ============================================================= */
@media (min-width: 901px) {
  .soins-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 900px) and (min-width: 601px) {
  .soins-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 600px) {
  .soins-grid {
    grid-template-columns: 1fr !important;
  }
}


/* =============================================================
   ✦ PASSE 2 — Unification chromatique & typo
   ============================================================= */

/* (1) Tirage section : brun → aubergine, gradient angle 180deg */
.tirage-section {
  background: linear-gradient(180deg,
    var(--aubergine-nuit) 0%,
    var(--aubergine) 50%,
    var(--prune) 100%) !important;
}
.tirage-card {
  background: rgba(255, 252, 245, 0.04) !important;
  border: 1px solid rgba(212, 177, 106, 0.25) !important;
  border-radius: 24px !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 80px rgba(31, 20, 38, 0.45) !important;
}
.tirage-field label {
  font-family: 'Marcellus', serif !important;
  color: var(--or-glow) !important;
  letter-spacing: 0.18em !important;
}
.tirage-field input,
.tirage-field textarea {
  font-family: 'Manrope', sans-serif !important;
  background: rgba(251, 247, 238, 0.06) !important;
  border: 1px solid rgba(212, 177, 106, 0.28) !important;
  color: var(--ivoire) !important;
  border-radius: 14px !important;
}
.tirage-field input::placeholder,
.tirage-field textarea::placeholder {
  color: rgba(251, 247, 238, 0.45);
}
.tirage-field input:focus,
.tirage-field textarea:focus {
  border-color: var(--or-vif) !important;
  background: rgba(251, 247, 238, 0.1) !important;
  outline: none !important;
}
.tirage-field .opt {
  color: rgba(232, 201, 136, 0.55) !important;
}
.tirage-consent {
  color: rgba(251, 247, 238, 0.85) !important;
}
.tirage-consent input[type="checkbox"] {
  accent-color: var(--or-mat) !important;
}

/* (3) Box-shadows résiduelles Sophroconnect : bleu → aubergine */
.portrait-stack img {
  box-shadow: 0 30px 80px rgba(43, 31, 38, 0.22) !important;
  border-radius: 24px !important;  /* (7) portrait radius unifié */
}
.portrait-stack img:nth-child(3) {
  box-shadow: 0 40px 100px rgba(43, 31, 38, 0.28) !important;
}
.portrait-stack:hover img:nth-child(2) {
  box-shadow: 0 36px 90px rgba(43, 31, 38, 0.30) !important;
}
.portrait-stack:hover img:nth-child(3) {
  box-shadow: 0 50px 110px rgba(43, 31, 38, 0.36) !important;
}
.kintsugi-feature {
  background: linear-gradient(135deg, rgba(46, 26, 44, 0.95), rgba(31, 20, 38, 0.98)) !important;
}

/* (4) Cinzel résiduel → Marcellus */
.axe-tag,
.soin-card .badge,
.tirage-field label,
.tirage-feedback,
[style*="Cinzel"] {
  font-family: 'Marcellus', serif !important;
}

/* (8) Soin-card .badge : pill stricte 999px */
.soin-card .badge,
.badge {
  border-radius: 999px !important;
}

/* (9) Sections sombres : angle gradient unifié 180deg */
.contact {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212, 177, 106, 0.12), transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(107, 70, 97, 0.3), transparent 60%),
    linear-gradient(180deg, var(--aubergine-nuit) 0%, var(--aubergine) 60%, var(--prune) 100%) !important;
}

/* (10) Testi-nav buttons : harmoniser avec btn-outline mini */
.testi-nav button {
  width: 48px;
  height: 48px;
  background: rgba(184, 153, 104, 0.06);
  border: 1px solid rgba(184, 153, 104, 0.32);
  color: var(--or-profond);
  font-family: 'Italiana', serif;
  font-size: 22px;
  line-height: 1;
}
.testi-nav button:hover {
  background: linear-gradient(135deg, var(--or-mat) 0%, var(--or-vif) 100%);
  border-color: var(--or-vif);
  color: var(--ivoire);
  box-shadow: 0 6px 18px rgba(107, 83, 40, 0.25);
}

/* (11) Newsletter btn — variante mini officielle */
.btn-mini {
  padding: 11px 22px !important;
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
}
#footer-nl-btn {
  padding: 11px 22px !important;
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
}

/* (14) Form checkboxes — accent doré partout */
input[type="checkbox"] {
  accent-color: var(--or-mat);
}

/* (15) Hero text-shadow : noir pur → aubergine profonde */
.hero h1 {
  text-shadow: 0 4px 28px rgba(31, 20, 38, 0.5) !important;
}

/* (17) Promesses padding aligné au standard */
.promesses {
  padding: 100px 0 !important;
}

/* (18) Hero h1 em : un seul or (glow garde sa lumière sur fond sombre) */
.hero h1 em {
  color: var(--or-glow) !important;
}

/* (5) Hero — strate sub absorbée par tagline (gérée dans HTML) */
.hero-sub { display: none !important; }
.hero-tagline {
  margin-top: 18px !important;
  font-size: 13px !important;
}

/* Quote section ☽ : padding plus respirant sur mobile */
@media (max-width: 720px) {
  .quote-section { padding-top: 110px !important; }
  .quote-section::before { font-size: 36px; top: 40px; }
}


/* =============================================================
   ✦ SOINS : TOUTES les 6 cartes en texture bois lisible
   (avant : seules .delay-3 et .signature-card)
   ============================================================= */
.soins-grid .soin-card {
  background:
    linear-gradient(180deg, rgba(20, 12, 0, 0.55), rgba(20, 12, 0, 0.65)),
    url('https://www.giri-app.com/css/textures/wood-medium.jpg') center/cover no-repeat !important;
  border: 2px solid rgba(255, 215, 130, 0.55) !important;
  border-radius: 18px !important;
  box-shadow:
    0 0 0 1px rgba(255, 215, 130, 0.25),
    0 18px 44px rgba(30, 18, 0, 0.50),
    0 36px 82px rgba(20, 12, 0, 0.40),
    inset 0 1px 0 rgba(255, 230, 180, 0.45) !important;
}
.soins-grid .soin-card:hover {
  border-color: rgba(255, 215, 130, 0.85) !important;
  box-shadow:
    0 0 0 1px rgba(255, 215, 130, 0.40),
    0 22px 54px rgba(30, 18, 0, 0.60),
    0 44px 96px rgba(20, 12, 0, 0.45),
    inset 0 1px 0 rgba(255, 240, 200, 0.55) !important;
}
.soins-grid .soin-card h3 {
  color: #FFF8E0 !important;
  -webkit-text-fill-color: #FFF8E0 !important;
  background: none !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.85), 0 0 22px rgba(255, 215, 130, 0.35) !important;
}
.soins-grid .soin-card p {
  color: #FFF1D0 !important;
  -webkit-text-fill-color: #FFF1D0 !important;
  text-shadow: 0 2px 3px rgba(0,0,0,0.80) !important;
}
.soins-grid .soin-card p strong {
  color: #FFD580 !important;
  -webkit-text-fill-color: #FFD580 !important;
  text-shadow: 0 2px 3px rgba(0,0,0,0.85) !important;
  font-weight: 800 !important;
}
.soins-grid .soin-card p[style*="gold-deep"],
.soins-grid .soin-card p[style*="font-style:italic"] {
  color: #FFE0A8 !important;
  -webkit-text-fill-color: #FFE0A8 !important;
  text-shadow: 0 2px 3px rgba(0,0,0,0.85) !important;
}
.soins-grid .soin-card .price {
  border-top-color: rgba(255, 215, 130, 0.30) !important;
}
.soins-grid .soin-card .price .amount {
  color: #FFD580 !important;
  -webkit-text-fill-color: #FFD580 !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.90) !important;
  font-weight: 800 !important;
}
.soins-grid .soin-card .price .label {
  color: #FFF1D0 !important;
  -webkit-text-fill-color: #FFF1D0 !important;
  text-shadow: 0 2px 3px rgba(0,0,0,0.85) !important;
}
.soins-grid .soin-card .badge {
  background: linear-gradient(135deg, #FFE08A, #C29A3E) !important;
  color: #2A1200 !important;
  -webkit-text-fill-color: #2A1200 !important;
  text-shadow: none !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.55) !important;
  font-weight: 800 !important;
}
/* Signature card garde son liseré or plus marqué */
.soins-grid .soin-card.signature-card {
  border-color: rgba(255, 215, 130, 0.85) !important;
}


/* =============================================================
   ✦ SPHÈRE MALIKA — Orbe doré sur logo + FAB
   Logo (haut-gauche) : sphère STATIQUE
   FAB Compagnon IA   : sphère + anneau qui respire calmement
   ============================================================= */

/* Base sphère commune — sans animation */
.logo-mark,
#companion-fab .glyph {
  width: 38px !important;
  height: 38px !important;
  border: none !important;
  border-radius: 50% !important;
  position: relative !important;
  display: inline-block !important;
  overflow: visible !important;
  font-size: 0 !important;
  color: transparent !important;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 252, 230, 0.95) 0%, rgba(255, 240, 200, 0.55) 6%, transparent 20%),
    radial-gradient(circle at 50% 50%, rgba(255, 200, 130, 0.40) 0%, transparent 60%),
    radial-gradient(circle at 38% 35%,
      #FFF1C8 0%,
      #F5D58A 14%,
      #C99757 34%,
      #7A4868 60%,
      #3C1E3E 85%,
      #1B0E22 100%) !important;
  box-shadow:
    inset 0 -8px 16px rgba(20, 8, 24, 0.70),
    inset 0 4px 10px rgba(255, 240, 200, 0.30),
    inset 0 0 0 1px rgba(232, 201, 136, 0.55),
    0 6px 18px rgba(20, 12, 22, 0.45) !important;
}

/* Logo haut-gauche : pas d'anneaux, pas de pulse */
.logo-mark::before,
.logo-mark::after {
  content: none !important;
}

/* FAB Compagnon IA : pas de pulse, sphère statique */
#companion-fab .glyph::before { content: none !important; }

/* === FAB Compagnon IA : sphère seule, pas de texte === */
#companion-fab .label { display: none !important; }
#companion-fab {
  padding: 0 !important;
  width: 64px !important;
  height: 64px !important;
  border-radius: 50% !important;
  background: transparent !important;
  box-shadow: none !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  overflow: visible !important;
}
#companion-fab .glyph {
  width: 56px !important;
  height: 56px !important;
}
#companion-fab:hover {
  transform: translateY(-3px) scale(1.05);
}
@media (max-width: 600px) {
  #companion-fab { width: 60px !important; height: 60px !important; right: 20px !important; bottom: 20px !important; }
  #companion-fab .glyph { width: 52px !important; height: 52px !important; }
}


/* =============================================================
   ✦ THEME TOGGLE — Galet palette du peintre
   Petit ovale aplati, fond aubergine, 5 micro-points de couleurs
   en arc-en-ciel (terracotta · or · vert · bleu · prune).
   Cliquable, raffiné, intentionnel.
   ============================================================= */
.theme-toggle {
  width: 62px !important;
  height: 26px !important;
  border-radius: 999px !important;
  background:
    linear-gradient(180deg, rgba(255,240,200,0.06), transparent 50%),
    linear-gradient(135deg, #3C1E3E 0%, #2E1A2C 50%, #1F1426 100%) !important;
  border: 1px solid rgba(232, 201, 136, 0.55) !important;
  box-shadow:
    0 4px 14px rgba(20, 12, 22, 0.45),
    0 0 16px rgba(232, 201, 136, 0.18),
    inset 0 1px 0 rgba(255, 240, 200, 0.18),
    inset 0 -1px 2px rgba(20, 12, 22, 0.4) !important;
  color: transparent !important;
  font-size: 0 !important;
  position: fixed;
  overflow: visible !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  padding: 0 12px !important;
  transition: transform .35s cubic-bezier(.2,.8,.2,1),
              box-shadow .35s ease,
              border-color .35s ease !important;
}
/* On supprime tout ::before laissé par themes.css */
.theme-toggle::before { content: none !important; }

/* Les 5 micro-pastilles de couleur — injectées via box-shadow d'un ::after unique */
.theme-toggle::after {
  content: '' !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  display: block !important;
  background: #C97A5E !important; /* terracotta */
  box-shadow:
    10px 0 0 #E8C988,                  /* or */
    20px 0 0 #B9A04A,                  /* or-vert */
    /* déduplication 5 plots : on simule via outline-offset trick non possible.
       Donc on superpose 4 box-shadow latérales */
    -10px 0 0 #7A9A7E,                 /* vert sage */
    -20px 0 0 #5A8094 !important;      /* bleu nuit */
  position: relative !important;
  font-size: 0 !important;
  color: transparent !important;
  flex: 0 0 6px !important;
}

.theme-toggle:hover {
  transform: translateY(-1px) !important;
  border-color: rgba(255, 240, 200, 0.85) !important;
  box-shadow:
    0 8px 22px rgba(20, 12, 22, 0.55),
    0 0 28px rgba(232, 201, 136, 0.45),
    inset 0 1px 0 rgba(255, 240, 200, 0.25),
    inset 0 -1px 2px rgba(20, 12, 22, 0.4) !important;
}
.theme-toggle.active {
  border-color: rgba(255, 240, 200, 0.95) !important;
  box-shadow:
    0 6px 18px rgba(20, 12, 22, 0.50),
    0 0 24px rgba(232, 201, 136, 0.55),
    inset 0 1px 0 rgba(255, 240, 200, 0.35),
    inset 0 -1px 2px rgba(20, 12, 22, 0.4) !important;
}

@media (max-width: 600px) {
  .theme-toggle {
    width: 56px !important;
    height: 24px !important;
    padding: 0 10px !important;
  }
  .theme-toggle::after {
    width: 5px !important;
    height: 5px !important;
    box-shadow:
      9px 0 0 #E8C988,
      18px 0 0 #B9A04A,
      -9px 0 0 #7A9A7E,
      -18px 0 0 #5A8094 !important;
  }
}


/* =============================================================
   ✦ COMPAGNON IA — Panneau de chat (style E-CARE)
   ============================================================= */
#companion-panel {
  position: fixed;
  right: 30px;
  bottom: 110px;
  width: 380px;
  max-width: calc(100vw - 40px);
  height: 540px;
  max-height: calc(100vh - 160px);
  z-index: 999;
  background: linear-gradient(180deg, #FBF7EE 0%, #F2EDDF 100%);
  border: 1px solid rgba(212, 177, 106, 0.45);
  border-radius: 18px;
  box-shadow:
    0 20px 60px rgba(20, 12, 22, 0.35),
    0 0 0 1px rgba(232, 201, 136, 0.20);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s cubic-bezier(.2,.8,.2,1);
}
#companion-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.cp-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(135deg, #2E1A2C 0%, #4A2C44 100%);
  color: #FBF7EE;
  flex: 0 0 auto;
}
.cp-title { display: flex; align-items: center; gap: 12px; }
.cp-orb {
  width: 34px; height: 34px; border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 252, 230, 0.95) 0%, rgba(255, 240, 200, 0.55) 6%, transparent 20%),
    radial-gradient(circle at 50% 50%, rgba(255, 200, 130, 0.40) 0%, transparent 60%),
    radial-gradient(circle at 38% 35%, #FFF1C8 0%, #F5D58A 14%, #C99757 34%, #7A4868 60%, #3C1E3E 85%, #1B0E22 100%);
  box-shadow: inset 0 -4px 8px rgba(20,8,24,0.6), inset 0 2px 4px rgba(255,240,200,0.25), inset 0 0 0 1px rgba(232,201,136,0.55);
}
.cp-title-text strong {
  font-family: 'Italiana', 'Cormorant Garamond', serif;
  font-size: 17px; letter-spacing: 0.02em; display: block;
  font-weight: 400;
}
.cp-title-text small {
  font-family: 'Manrope', sans-serif;
  font-size: 11px; opacity: 0.75; letter-spacing: 0.04em;
}
.cp-close {
  background: rgba(255, 240, 200, 0.10);
  color: #FBF7EE;
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
  line-height: 1;
}
.cp-close:hover { background: rgba(255, 240, 200, 0.20); transform: rotate(90deg); }
.cp-aibanner {
  padding: 9px 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px; line-height: 1.45;
  background: rgba(184, 153, 104, 0.10);
  border-bottom: 1px solid rgba(184, 153, 104, 0.18);
  color: #4A2C44;
}
.cp-aibanner a { color: #6B5328; text-decoration: underline; }
.cp-msgs {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 16px 14px 8px;
  display: flex; flex-direction: column; gap: 10px;
  background: #FBF7EE;
}
.cp-msg { display: flex; }
.cp-msg-user { justify-content: flex-end; }
.cp-msg-assistant { justify-content: flex-start; }
.cp-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px; line-height: 1.55;
  word-wrap: break-word;
}
.cp-msg-user .cp-bubble {
  background: linear-gradient(135deg, #B89968, #D4B16A);
  color: #2B1F26;
  border-bottom-right-radius: 4px;
  box-shadow: 0 2px 8px rgba(184, 153, 104, 0.25);
}
.cp-msg-assistant .cp-bubble {
  background: #FFFFFF;
  color: #2B1F26;
  border: 1px solid rgba(184, 153, 104, 0.25);
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 6px rgba(74, 44, 68, 0.08);
}
.cp-dots { display: inline-flex; gap: 6px; align-items: center; padding: 6px 2px; }
.cp-dots i {
  width: 5px; height: 5px; border-radius: 50%;
  background: #B89968;
  display: inline-block;
  opacity: 0.3;
  animation: cpDots 2.6s ease-in-out infinite both;
}
.cp-dots i:nth-child(2) { animation-delay: 0.55s; }
.cp-dots i:nth-child(3) { animation-delay: 1.1s; }
@keyframes cpDots {
  0%, 100% { opacity: 0.28; }
  50%      { opacity: 0.72; }
}
.cp-suggestions {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 0 14px 10px;
  background: #FBF7EE;
}
.cp-chip {
  font-family: 'Manrope', sans-serif;
  font-size: 11.5px;
  padding: 6px 12px;
  background: rgba(184, 153, 104, 0.08);
  border: 1px solid rgba(184, 153, 104, 0.30);
  color: #6B5328;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s;
}
.cp-chip:hover {
  background: rgba(184, 153, 104, 0.18);
  border-color: rgba(184, 153, 104, 0.55);
}
.cp-input-row {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px 12px;
  background: #F2EDDF;
  border-top: 1px solid rgba(184, 153, 104, 0.20);
  flex: 0 0 auto;
}
#cp-input {
  flex: 1; min-width: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(184, 153, 104, 0.35);
  background: #FFFFFF;
  color: #2B1F26;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
#cp-input:focus {
  border-color: #B89968;
  box-shadow: 0 0 0 3px rgba(184, 153, 104, 0.18);
}
.cp-send {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #B89968, #6B5328);
  color: #FBF7EE;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 38px;
  transition: transform .2s, box-shadow .2s;
}
.cp-send:hover { transform: scale(1.06); box-shadow: 0 4px 14px rgba(107, 83, 40, 0.40); }

@media (max-width: 600px) {
  #companion-panel {
    right: 12px; left: 12px; width: auto;
    bottom: 92px;
    height: calc(100vh - 140px);
  }
}
