/* ============================================
   KALIKANA — Premium CBD Landing V4
   Apple-like, zero containers, cinematic
   ============================================ */

@charset "UTF-8";

/* === FONTS === */
@font-face { font-family: 'KaliKana'; src: url('../assets/fonts/KaliKana.woff2') format('woff2'), url('../assets/fonts/KaliKana.otf') format('opentype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'IntegralCF'; src: url('../assets/fonts/IntegralCF_Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'IntegralCF'; src: url('../assets/fonts/IntegralCF_DemiBold.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'IntegralCF'; src: url('../assets/fonts/IntegralCF_Bold.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'IntegralCF'; src: url('../assets/fonts/IntegralCF_ExtraBold.woff2') format('woff2'); font-weight: 800; font-display: swap; }

/* === VARIABLES === */
:root {
  --bg: #070707;
  --bg-deep: #020202;
  --gold: #c9a84c;
  --gold-bright: #e3cc7a;
  --gold-dim: #8a7232;
  --cream: #f0ede8;
  --cream-soft: #c8c3b8;
  --font-brand: 'KaliKana', serif;
  --font-heading: 'IntegralCF', 'KaliKana', sans-serif;
  --font-body: 'KaliKana', Georgia, serif;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { background: var(--bg); color: var(--cream); font-family: var(--font-body); font-weight: 500; line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; }

/* Fond NUIT PREMIUM — comble le noir plat (halo vert en haut, doré en bas) sans casser le contraste */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 90% 55% at 50% -8%, rgba(34,52,28,0.55), transparent 60%),
    radial-gradient(ellipse 100% 55% at 50% 108%, rgba(48,38,16,0.5), transparent 60%),
    #050705;
}

/* SCINTILLEMENT OUTRO — glow doré pulsé pendant le hold du logo constellation */
#star-shimmer {
  position: fixed; inset: 0; z-index: 7;
  pointer-events: none; opacity: 0;
  background: radial-gradient(circle at 50% 43%, rgba(212,175,96,0.22), rgba(212,175,96,0.06) 30%, transparent 52%);
  transition: opacity 0.5s ease;
}
body.outro-hold #star-shimmer {
  opacity: 1;
  animation: starShimmer 2.6s ease-in-out infinite;
}
@keyframes starShimmer {
  0%, 100% { opacity: 0.45; transform: scale(0.98); }
  50%      { opacity: 1;    transform: scale(1.04); }
}

/* Film grain overlay — disabled for perf, re-enable for prod
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9000;
  pointer-events: none; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 256px;
} */

/* === LOADER === */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-deep);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader {
  background:
    radial-gradient(ellipse 70% 60% at 50% 42%, rgba(38,56,30,0.6), transparent 62%),
    radial-gradient(ellipse 90% 50% at 50% 108%, rgba(48,38,16,0.5), transparent 60%),
    #050705;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
/* Halo doré pulsé derrière le logo */
.loader-logo-halo {
  position: relative;
  width: 150px; height: 150px;
  margin: 0 auto 1.6rem;
  display: flex; align-items: center; justify-content: center;
}
.loader-logo-halo::before {
  content: ''; position: absolute; inset: -30%;
  background: radial-gradient(circle, rgba(212,175,96,0.32), transparent 62%);
  animation: loaderHalo 2.6s ease-in-out infinite;
}
@keyframes loaderHalo {
  0%, 100% { opacity: 0.4; transform: scale(0.92); }
  50%      { opacity: 1;   transform: scale(1.08); }
}
.loader-logo {
  position: relative; z-index: 1;
  width: 132px; height: auto;
  filter: drop-shadow(0 6px 24px rgba(212,175,96,0.35));
  animation: loaderLogo 3s ease-in-out infinite;
}
@keyframes loaderLogo {
  0%, 100% { transform: translateY(0) scale(1); filter: drop-shadow(0 6px 20px rgba(212,175,96,0.3)) brightness(0.95); }
  50%      { transform: translateY(-4px) scale(1.03); filter: drop-shadow(0 10px 30px rgba(212,175,96,0.55)) brightness(1.12); }
}
.loader-title {
  font-family: var(--font-heading);
  font-size: 1.7rem; font-weight: 400;
  letter-spacing: 0.42em; text-indent: 0.42em;
  color: transparent;
  background: linear-gradient(180deg, #f4e4b8 0%, #d4af60 48%, #a9822e 100%);
  -webkit-background-clip: text; background-clip: text;
  margin-bottom: 0.5rem;
}
.loader-tag {
  font-family: var(--font-body);
  font-size: 0.72rem; letter-spacing: 0.06em;
  color: var(--cream-soft); opacity: 0.8;
  margin-bottom: 2rem;
}
.loader-tag em { color: var(--gold); font-style: italic; }
.loader-bar-wrap {
  width: 220px; height: 2px;
  background: rgba(201,168,76,0.12);
  border-radius: 2px; overflow: hidden;
  margin: 0 auto 0.9rem;
}
#loader-bar {
  width: 0%; height: 100%;
  background: linear-gradient(90deg, #a9822e, #f4e4b8, #d4af60);
  box-shadow: 0 0 12px rgba(212,175,96,0.7);
  transition: width 0.1s linear;
}
#loader-percent {
  font-family: var(--font-heading); font-size: 0.68rem; font-weight: 400;
  color: var(--gold); letter-spacing: 0.34em;
}

/* === HEADER === */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 52px;
  background: linear-gradient(180deg, rgba(7,7,7,0.9) 0%, transparent 100%);
  pointer-events: none; opacity: 0;
  transition: opacity 0.5s ease;
}
.site-header.visible { opacity: 1; }
.site-header nav { display: flex; align-items: center; justify-content: space-between; height: 100%; padding: 0 4vw; pointer-events: auto; }
.nav-logo img { width: 32px; height: auto; }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { font-family: var(--font-heading); font-size: 0.6rem; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cream-soft); transition: color 0.3s; }
.nav-links a:hover { color: var(--gold); }

/* === SCROLL CUE (flottant sur le canvas) === */
.scroll-cue {
  position: fixed; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; transition: opacity 0.5s ease;
}
.scroll-cue.visible { opacity: 0.6; }
.scroll-cue span { font-family: var(--font-heading); font-size: 0.5rem; font-weight: 400; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold-dim); }
.scroll-cue .line { width: 1px; height: 36px; background: var(--gold-dim); animation: scroll-line 2s ease-in-out infinite; }
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* === BANDES AZTÈQUES — images découpées, AU-DESSUS de tout === */
.banner-band {
  position: fixed; left: 0; right: 0;
  z-index: 8;
  width: 100%;
  height: auto;
  pointer-events: none;
  display: block;
}
.band-top { top: 0; }
.band-bottom { bottom: 0; }

/* Bande noire sous chaque bande aztèque pour masquer ce qu'il y a derrière */
.banner-band::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 3vh;
  background: #000;
}
.band-top::after { bottom: -1px; }
.band-bottom::after { top: -1px; }

/* === BANNER — split gauche/droite, slide-out tiroir === */
.banner-layer {
  position: fixed; inset: 0; z-index: 5;
  overflow: hidden; background: #000;
  pointer-events: none;
}
.banner-half {
  position: absolute; inset: 0;
  overflow: hidden;
}
.banner-half-left { clip-path: inset(0 58% 0 0); }
.banner-half-right { clip-path: inset(0 0 0 54%); }
.banner-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 66% center;
}
/* Mur de fleurs — crop BRUT de l'originale (vrais bords des buds, fond noir natif).
   Le feuillage original haut/bas est recouvert par les bandes aztèques de la page (z-8)
   → une seule bande visible. Aucun fondu artificiel. */
.banner-img-left {
  position: absolute;
  left: -11%; top: 50%;
  transform: translateY(-50%);
  height: 104%;
  width: auto;
  object-fit: contain;
}
/* === BANNIÈRE DROITE — la dynastie de cigares, REMPLIT toute la hauteur (plus de vide) === */
/* Dynastie : cigares détourés redressés + pack Trio, alignés en bas entre les bandes aztèques */
/* Image produits (composition finale Loris) — à droite, débordant sous les bandes aztèques */
.banner-produits {
  position: absolute;
  right: -2.5%; bottom: -6%;
  height: 114%;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  z-index: 2;   /* SOUS les bandes aztèques (z-8) → produits partiellement cachés aux extrémités */
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.5));
}
.dynasty-glow {
  position: absolute;
  right: 0; top: 50%;
  width: 52%; height: 82%;
  transform: translateY(-50%);
  background: radial-gradient(ellipse at 60% center,
    rgba(212,175,96,0.30) 0%, rgba(120,150,70,0.14) 42%, transparent 72%);
  filter: blur(14px);
  pointer-events: none;
  z-index: 1;
}

/* === CANVAS — par dessus la bannière (5), blend lighten = noir transparent === */
.canvas-wrap {
  position: fixed; inset: 0; z-index: 6;
  opacity: 1;
  mix-blend-mode: lighten;
}
#canvas { width: 100%; height: 100%; display: block; }

/* === INCEPTION CANVAS — LE HERO : cigare → zoom macro → champ === */
/* z-index 2 = SOUS la bannière (5) et les bandes (8) */
.inception-wrap {
  position: fixed; inset: 0; z-index: 2;
  opacity: 0; pointer-events: none;
  background: #000;
}
#inception-canvas { width: 100%; height: 100%; display: block; }

/* === NOMS PRODUITS — or KaliKana, au-dessus des displays === */
#product-name-overlay {
  position: fixed; left: 50%; top: 16vh;
  transform: translateX(-50%);
  z-index: 4; text-align: center;
  opacity: 0; pointer-events: none;
}
#product-name-overlay .pn-main {
  display: block;
  font-family: var(--font-brand);
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 500; line-height: 1;
  background: linear-gradient(160deg, #f6e27a 0%, #e3cc7a 22%, #b8860b 48%, #ffd700 62%, #8a6d1f 85%, #e9d98b 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 3px 14px rgba(0,0,0,0.75)) drop-shadow(0 0 26px rgba(212,175,96,0.35));
  letter-spacing: 0.04em;
}
#product-name-overlay .pn-sub {
  display: block; margin-top: 0.7rem;
  font-family: var(--font-brand);
  font-size: clamp(0.8rem, 1.3vw, 1.05rem); font-weight: 500;
  letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
/* jolie ligne dorée qui sépare le nom de sa collection */
#product-name-overlay .pn-sub::before {
  content: ''; display: block; width: 74px; height: 1.5px; margin: 0 auto 0.8rem;
  background: linear-gradient(90deg, transparent, #f6e27a, #d4af60, #f6e27a, transparent);
  box-shadow: 0 0 10px rgba(212,175,96,0.5);
}

/* === DARK OVERLAY === */
#dark-overlay { position: fixed; inset: 0; z-index: 2; background: var(--bg-deep); opacity: 0; pointer-events: none; }

/* === MARQUEE === */
.marquee-wrap { position: fixed; top: 50%; left: 0; z-index: 3; width: 100%; overflow: visible; opacity: 0; pointer-events: none; transform: translateY(-50%); }
.marquee-text {
  display: inline-block; white-space: nowrap;
  font-family: var(--font-heading); font-size: 13vw; font-weight: 800;
  color: transparent; -webkit-text-stroke: 1px rgba(201,168,76,0.06);
  letter-spacing: 0.03em; text-transform: uppercase; user-select: none;
}

/* === SCROLL CONTAINER === */
#scroll-container { position: relative; width: 100%; height: 3668vh; z-index: 5; }

/* === SCROLL SECTIONS === */
.scroll-section {
  position: absolute; width: 100%; height: 100vh;
  display: flex; align-items: center;
  pointer-events: none; opacity: 0; visibility: hidden;
  transition: opacity 0.15s ease;
}
.scroll-section.visible { opacity: 1; visibility: visible; pointer-events: auto; }

/* Text zones — outer 40% only, NO containers */
.align-left { padding-left: 6vw; padding-right: 55vw; }
.align-right { padding-left: 55vw; padding-right: 6vw; }
.section-inner { max-width: 36vw; }
.align-right .section-inner { text-align: right; }

.section-label {
  display: block;
  font-family: var(--font-brand); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
/* petite ligne dorée sous le label (séparateur premium) */
.section-label::after {
  content: ''; display: block; width: 56px; height: 1.5px; margin-top: 0.7rem;
  background: linear-gradient(90deg, #d4af60, transparent);
  box-shadow: 0 0 8px rgba(212,175,96,0.5);
}
.align-right .section-label::after { margin-left: auto; background: linear-gradient(90deg, transparent, #d4af60); }
.section-heading {
  font-family: var(--font-brand);
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  font-weight: 500; line-height: 1.12; color: var(--cream);
  text-shadow: 0 2px 30px rgba(0,0,0,0.85), 0 0 60px rgba(0,0,0,0.5);
  margin-bottom: 1.2rem;
}
.section-body {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  line-height: 1.8; color: var(--cream-soft);
  text-shadow: 0 1px 15px rgba(0,0,0,0.9), 0 0 30px rgba(0,0,0,0.5);
}

/* === MONARQUE TEXT OVERLAY — flotte par-dessus l'inception canvas === */
#monarque-text-overlay {
  position: fixed; bottom: 8vh; left: 50%;
  transform: translateX(-50%); text-align: center;
  z-index: 6; /* au-dessus de tout */
  opacity: 0; pointer-events: none;
}
.product-name {
  display: block;
  font-family: var(--font-brand);
  font-size: clamp(2.2rem, 5.2vw, 4.2rem);
  font-weight: 500; color: var(--cream);
  letter-spacing: 0.06em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.95), 0 0 80px rgba(0,0,0,0.7);
}
.product-sub {
  display: block;
  font-family: var(--font-brand); font-size: 0.8rem; font-weight: 500;
  color: var(--gold); letter-spacing: 0.42em; text-transform: uppercase;
  margin-top: 0.55rem;
  text-shadow: 0 2px 15px rgba(0,0,0,0.9);
}
/* ligne dorée entre le nom et la collection */
.product-sub::before {
  content: ''; display: block; width: 74px; height: 1.5px; margin: 0 auto 0.7rem;
  background: linear-gradient(90deg, transparent, #f6e27a, #d4af60, #f6e27a, transparent);
  box-shadow: 0 0 10px rgba(212,175,96,0.5);
}

/* === STATS === */
.section-stats { justify-content: center; padding: 0 8vw; }
.stats-grid { display: flex; gap: 7vw; align-items: center; justify-content: center; width: 100%; }
.stat { text-align: center; }
.stat-number { font-family: var(--font-heading); font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 800; color: var(--gold); line-height: 1; }
.stat-suffix { font-family: var(--font-heading); font-size: clamp(1rem, 2vw, 1.8rem); font-weight: 600; color: var(--gold-bright); margin-left: 0.1em; }
.stat-label { font-family: var(--font-body); font-size: 0.7rem; color: var(--cream-soft); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.5rem; max-width: 170px; margin-left: auto; margin-right: auto; }

/* === SCROLL IMAGES — fixed product images that appear/disappear === */
.scroll-image {
  position: fixed; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  background: #000; opacity: 0; pointer-events: none;
  transition: opacity 0.15s ease;
}
.scroll-image.visible { opacity: 1; }
.scroll-image-img {
  width: auto; height: 80vh; max-width: 60vw;
  object-fit: contain;
  filter: contrast(1.1) saturate(1.1);
}
/* Vignette radiale — fond le blanc vers le noir */
.scroll-image-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 45% 45% at center, transparent 0%, rgba(0,0,0,0.5) 35%, rgba(0,0,0,0.9) 55%, #000 70%);
  pointer-events: none;
}

/* Cigar parade — produit centré + label en bas */
.cigar-parade { flex-direction: column; }
.cigar-img { height: 65vh; max-width: 50vw; }
.cigar-label {
  position: absolute; bottom: 10vh; left: 50%;
  transform: translateX(-50%); text-align: center;
  z-index: 3;
}
.cigar-name {
  display: block;
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800; color: var(--cream);
  letter-spacing: 0.08em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.95), 0 0 80px rgba(0,0,0,0.7);
}
.cigar-line {
  display: block;
  font-family: var(--font-heading); font-size: 0.6rem; font-weight: 400;
  color: var(--gold-dim); letter-spacing: 0.5em; text-transform: uppercase;
  margin-top: 0.3rem;
  text-shadow: 0 2px 15px rgba(0,0,0,0.9);
}

/* === CTA === */
.section-cta { justify-content: center; }
.cta-content { text-align: center; max-width: 680px; margin: 0 auto; padding: 0 2rem; }
.cta-logo { width: 90px; height: auto; margin: 0 auto 2rem; filter: drop-shadow(0 0 40px rgba(201,168,76,0.15)); }
.cta-heading { font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 800; color: var(--cream); line-height: 1.1; text-shadow: 0 4px 40px rgba(0,0,0,0.8); margin-bottom: 0.8rem; }
.cta-body { font-family: var(--font-body); font-size: 1rem; color: var(--cream-soft); margin-bottom: 2.5rem; text-shadow: 0 2px 15px rgba(0,0,0,0.8); }
.cta-button {
  display: inline-block;
  font-family: var(--font-heading); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 1rem 2.5rem; margin: 0 0.4rem 0.6rem;
  transition: all 0.4s ease;
}
.cta-button-primary { color: var(--bg); background: var(--gold); }
.cta-button-primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.25); color: var(--bg); }
.cta-button-secondary { color: var(--gold); background: transparent; border: 1px solid rgba(201,168,76,0.25); }
.cta-button-secondary:hover { border-color: var(--gold); background: rgba(201,168,76,0.05); color: var(--gold-bright); }

/* === FINISHING PREMIUM (v63) === */
.cta-logo { width: 132px; margin-bottom: 1.6rem; filter: drop-shadow(0 0 60px rgba(201,168,76,0.35)) drop-shadow(0 0 12px rgba(201,168,76,0.5)); animation: ctaGlow 4.5s ease-in-out infinite; }
@keyframes ctaGlow {
  0%,100% { filter: drop-shadow(0 0 50px rgba(201,168,76,0.28)) drop-shadow(0 0 10px rgba(201,168,76,0.45)); }
  50%     { filter: drop-shadow(0 0 78px rgba(201,168,76,0.5))  drop-shadow(0 0 16px rgba(201,168,76,0.7)); }
}
.cta-heading {
  font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.3rem); font-weight: 800;
  white-space: nowrap; letter-spacing: 0.14em; margin: 0 0 0.5rem; text-indent: 0.14em;
  background: linear-gradient(180deg, #f6e6ad 0%, var(--gold-bright) 45%, var(--gold) 70%, #9a7c2e 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  text-shadow: 0 6px 50px rgba(0,0,0,0.6);
}
.cta-underline {
  display: block; width: 0; height: 2px; margin: 0.2rem auto 1.5rem;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  box-shadow: 0 0 18px rgba(201,168,76,0.6);
  transition: width 1.4s cubic-bezier(.19,1,.22,1) 0.3s;
}
.section-cta.visible .cta-underline { width: 240px; }
.cta-tagline { font-family: var(--font-body); font-size: clamp(0.95rem,2.2vw,1.25rem); color: var(--cream-soft); margin: 0 0 1.6rem; letter-spacing: 0.02em; }
.cta-tagline em { font-style: italic; color: var(--gold-bright); }
.cta-lines {
  display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 2rem;
  font-family: var(--font-heading); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold);
}
.cta-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px var(--gold-bright); }
.cta-features {
  list-style: none; padding: 0; margin: 0 auto 2.4rem; display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem;
  align-items: center; justify-content: center; max-width: 460px;
}
.cta-features li {
  position: relative; font-family: var(--font-body); font-size: 0.82rem; color: var(--cream-soft);
  letter-spacing: 0.04em; padding-left: 1rem;
}
.cta-features li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border: 1px solid var(--gold); transform-origin: center; rotate: 45deg;
}
.cta-actions { margin-bottom: 2rem; }

/* === BOUTON MAGNET FINAL — cartes green & gold lumineuses (Pro / Particulier) === */
.cta-magnet-wrap {
  display: flex; gap: 1.8rem; justify-content: center; flex-wrap: wrap;
  margin: 1rem auto 2.2rem; perspective: 1000px;
}
@property --cm-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.cta-magnet {
  position: relative; overflow: hidden;
  width: 290px; padding: 1.8rem 1.8rem 1.6rem;
  border-radius: 20px;
  border: 2px solid transparent;
  /* contour conic-gradient GOLD/VERT rotatif (style KaliKorp) + fond nature */
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(60,90,40,0.5), transparent 70%) padding-box,
    linear-gradient(155deg, rgba(16,26,12,0.97), rgba(30,26,10,0.95)) padding-box,
    conic-gradient(from var(--cm-angle), #d4af60, #9ac35e, #f4e4b8, #4a7c2e, #d4af60, #7bb04a, #d4af60) border-box;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 28px rgba(120,160,70,0.16), inset 0 1px 0 rgba(255,255,255,0.07);
  text-align: center; text-decoration: none;
  transform-style: preserve-3d;
  transition: transform 0.2s ease, box-shadow 0.35s ease;
  animation: magnetGlow 3.4s ease-in-out infinite, cmRotate 5s linear infinite;
}
@keyframes cmRotate { to { --cm-angle: 360deg; } }
@keyframes magnetGlow {
  0%,100% { box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 26px rgba(120,160,70,0.15), inset 0 1px 0 rgba(255,255,255,0.07); }
  50%     { box-shadow: 0 12px 50px rgba(0,0,0,0.55), 0 0 46px rgba(212,175,96,0.34), inset 0 1px 0 rgba(255,255,255,0.11); }
}
.cta-magnet:hover {
  border-color: rgba(212,175,96,0.95);
  box-shadow: 0 22px 64px rgba(0,0,0,0.6), 0 0 66px rgba(212,175,96,0.52), 0 0 30px rgba(120,180,70,0.3);
}
.cm-icon { display: block; color: var(--gold); font-size: 0.85rem; margin-bottom: 0.55rem; }
.cm-top {
  display: block; font-family: var(--font-heading); font-size: 1.08rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: linear-gradient(180deg,#f6e8bf,#d4af60 55%,#b5872f);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 0.4rem;
}
.cm-sub { display: block; font-family: var(--font-body); font-size: 0.64rem; letter-spacing: 0.07em; color: var(--cream-soft); opacity: 0.72; margin-bottom: 1.1rem; }
.cm-go { display: inline-flex; align-items: center; gap: 0.45rem; font-family: var(--font-heading); font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: #b9e08a; }
.cm-arrow { transition: transform 0.3s ease; font-size: 1rem; }
.cta-magnet:hover .cm-arrow { transform: translateX(6px); }
.cm-shine {
  position: absolute; top: 0; left: -70%; width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,242,205,0.28), transparent);
  transform: skewX(-18deg); pointer-events: none;
  transition: left 0.75s ease;
}
.cta-magnet:hover .cm-shine { left: 140%; }
.cta-collections a { color: inherit; text-decoration: none; display: block; transition: color 0.25s; }
.cta-collections a:hover { color: var(--gold-bright); }
.cta-footer-links { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.9rem; margin: 0.4rem auto 0.9rem; }
.cta-footer-links a { font-family: var(--font-heading); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dim); text-decoration: none; transition: color 0.25s; }
.cta-footer-links a:hover { color: var(--gold-bright); }
.cfl-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold-dim); opacity: 0.5; }
.cta-seo { max-width: 620px; margin: 0.6rem auto 1rem; font-family: var(--font-body); font-size: 0.66rem; line-height: 1.7; color: var(--cream-soft); opacity: 0.55; text-align: center; }
.cta-seo strong { color: var(--gold-dim); font-weight: 600; }
.cta-signature { font-family: var(--font-heading); font-size: 0.6rem; font-weight: 400; letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold-dim); }

/* logo final animé en rotation 3D */
.cta-logo3d-scene { perspective: 1000px; width: 150px; height: 150px; margin: 0 auto 1.7rem; display: flex; align-items: center; justify-content: center; }
.cta-logo3d { width: 100%; height: auto; transform-style: preserve-3d; animation: logoSpin 12s linear infinite; filter: drop-shadow(0 0 46px rgba(201,168,76,0.42)) drop-shadow(0 0 14px rgba(201,168,76,0.55)); }
@keyframes logoSpin { from { transform: rotateY(0deg); } to { transform: rotateY(360deg); } }
/* univers produit */
.cta-catalog { font-family: var(--font-body); font-size: clamp(0.9rem,1.9vw,1.05rem); color: var(--cream-soft); margin: 0 0 1.3rem; letter-spacing: 0.02em; }
.cta-catalog strong { color: var(--gold-bright); font-weight: 700; }
.cta-collections { list-style: none; padding: 0; margin: 0 auto 2rem; display: flex; flex-wrap: wrap; gap: 0.55rem 0.7rem; align-items: center; justify-content: center; max-width: 540px; }
.cta-collections li { font-family: var(--font-heading); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,0.3); border-radius: 22px; padding: 0.38rem 0.9rem; transition: all 0.3s ease; }
.cta-collections li:hover { border-color: var(--gold-bright); color: var(--gold-bright); background: rgba(201,168,76,0.06); }

/* === CRYSTAL CANDY — variété phare (découpée avec la fleur) === */
#crystal-candy-overlay {
  position: fixed; top: 40%; left: 50%; transform: translateX(-50%);
  z-index: 7; text-align: center; opacity: 0; pointer-events: none;
}
.cc-slice { display: flex; flex-direction: column; align-items: center; will-change: transform, opacity; }
.cc-slice.cc-top { position: relative; clip-path: inset(0 0 50% 0); }
.cc-slice.cc-bottom { position: absolute; top: 0; left: 0; width: 100%; clip-path: inset(50% 0 0 0); }
.cc-tag { font-family: var(--font-heading); font-size: 0.6rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; text-shadow: 0 2px 12px rgba(0,0,0,0.8); }
.cc-main {
  font-family: var(--font-heading); font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 800; letter-spacing: 0.03em; line-height: 1;
  background: linear-gradient(180deg,#f8ebb6 0%,var(--gold-bright) 50%,var(--gold) 74%,#9a7c2e 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  text-shadow: 0 6px 40px rgba(0,0,0,0.7);
}
.cc-underline { display: block; width: 0; height: 2px; margin: 0.45rem auto 0.55rem; background: linear-gradient(90deg,transparent,var(--gold-bright),transparent); box-shadow: 0 0 16px rgba(201,168,76,0.65); transition: width 1s cubic-bezier(.19,1,.22,1); }
#crystal-candy-overlay.visible .cc-underline { width: 220px; }
.cc-sub { font-family: var(--font-body); font-size: clamp(0.8rem,1.6vw,0.95rem); color: var(--cream-soft); letter-spacing: 0.14em; text-shadow: 0 2px 12px rgba(0,0,0,0.85); }

/* === SOUND TOGGLE === */
#sound-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  background: rgba(7, 7, 7, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, border-color 0.3s ease, transform 0.2s ease;
}
#sound-toggle.visible {
  opacity: 1;
  pointer-events: auto;
}
#sound-toggle:hover {
  border-color: var(--gold-bright);
  transform: scale(1.08);
}
#sound-toggle svg { width: 20px; height: 20px; }
#sound-toggle.muted .sound-wave-1,
#sound-toggle.muted .sound-wave-2 { display: none; }
#sound-toggle.muted::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 24px;
  background: var(--gold);
  transform: rotate(45deg);
  border-radius: 1px;
}

/* === MOBILE === */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-heading { font-size: 3rem; }
  .hero-logo { width: 80px; }
  #scroll-container { height: 2854vh; }
  .align-left, .align-right { padding: 0 5vw; }
  .section-inner { max-width: 90vw; text-align: left !important; }
  .section-heading { font-size: 1.8rem; }
  .stats-grid { flex-direction: column; gap: 2rem; }
  .marquee-text { font-size: 20vw; }
  #sound-toggle { bottom: 1rem; right: 1rem; width: 40px; height: 40px; }

  /* Bannière — centrer le logo sur mobile portrait */
  .banner-img { object-position: center center; }

  /* Canvas logo — pleine largeur sur mobile */
  .canvas-wrap { background: transparent; }
}
