/** Shopify CDN: Minification failed

Line 2625:0 Unexpected "<"
Line 3119:0 Unexpected "<"

**/
/* ═══════════════════════════════════════════════════════════════
   LA COMPAGNIE DU CAVIAR — STYLE v3 (FUTURA / JOST)
   Plus de couleur · Plus d'interactivité · DA solide
═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

/* ─── VARIABLES ─── */
:root {
  /* Couleurs signature — teal dominant */
  --teal:        #3DBFB8;
  --teal-dark:   #2a9e98;
  --teal-xdark:  #1e7a75;
  --teal-light:  #e6f8f7;
  --teal-soft:   #B5E8E5;

  --navy:        #2B3A8C;
  --navy-dark:   #1E2A6B;
  --navy-deep:   #141e54;
  --navy-soft:   #6975C7;

  --rose:        #F7C5C5;
  --rose-dark:   #F0A0A0;
  --rose-light:  #FCE4E4;
  --rose-xlight: #FEF2F2;

  --yellow:      #F2DF6E;
  --yellow-dark: #E8CD3A;
  --yellow-light:#FBF4C8;

  --cream:       #FDF9EF;
  --white:       #FAFAFA;
  --ink:         #0F1642;

  /* Typographies */
  --futura: 'Jost', 'Futura', 'Futura PT', 'Century Gothic', 'Trebuchet MS', sans-serif;
  --serif:  'Cormorant Garamond', 'Georgia', serif;

  /* Dimensions */
  --banner-h:    40px;
  --nav-h:       90px;
  --radius:      24px;
  --radius-lg:   36px;

  /* Shadows */
  --sh-sm:  0 4px 18px rgba(43,58,140,.07);
  --sh-md:  0 12px 34px rgba(43,58,140,.13);
  --sh-lg:  0 28px 60px rgba(43,58,140,.18);
  --sh-teal:0 18px 40px rgba(61,191,184,.35);
}

/* ─── RESET ─── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; overflow-x:hidden; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }
body {
  font-family: var(--futura);
  font-weight: 400;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.5;
}
a { text-decoration:none; color:inherit; }
button { cursor:none; font-family:var(--futura); border:none; background:none; }
img { display:block; max-width:100%; }
ul, ol { list-style:none; }
::selection { background:var(--teal); color:#fff; }

/* Scrollbar */
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:var(--teal-light); }
::-webkit-scrollbar-thumb { background:var(--teal); border-radius:3px; }
::-webkit-scrollbar-thumb:hover { background:var(--teal-dark); }

/* ─── CURSEUR DUAL ─── */
#cur {
  position:fixed; top:0; left:0;
  width:8px; height:8px;
  background:var(--navy);
  border-radius:50%;
  pointer-events:none;
  z-index:99999;
  transform:translate(-50%,-50%);
  transition:width .25s ease, height .25s ease, background .25s ease;
  mix-blend-mode:multiply;
}
#cur-ring {
  position:fixed; top:0; left:0;
  width:38px; height:38px;
  border:1.5px solid var(--teal);
  border-radius:50%;
  pointer-events:none;
  z-index:99998;
  transform:translate(-50%,-50%);
  opacity:.55;
  transition:width .35s ease, height .35s ease, opacity .35s;
}
#cur.hov { width:28px; height:28px; background:var(--rose); mix-blend-mode:normal; }
#cur-ring.hov { width:64px; height:64px; opacity:.25; border-color:var(--rose); }
#cur.dark { background:var(--teal); }
#cur-ring.dark { border-color:#fff; }

/* ─── BANNIÈRE ANNONCE ─── */
.banner {
  position:fixed; top:0; left:0; right:0;
  z-index:9000;
  height:var(--banner-h);
  background:linear-gradient(90deg, var(--rose) 0%, #F9D6D6 50%, var(--rose) 100%);
  overflow:hidden;
  display:flex; align-items:center;
}
.ticker-wrap { display:flex; width:max-content; animation:tick 32s linear infinite; }
.ticker-item {
  display:flex; align-items:center;
  gap:2rem;
  white-space:nowrap; padding-right:4rem;
  color:var(--navy);
  font-size:.72rem; font-weight:700;
  letter-spacing:.15em; text-transform:uppercase;
}
.ticker-item .s { font-size:1rem; color:var(--teal); }
@keyframes tick { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ─── NAVIGATION ─── */
#nav {
  position:fixed;
  top:var(--banner-h); left:0; right:0;
  z-index:8000;
  height:var(--nav-h);
  padding:0 2.5rem;
  display:flex; align-items:center; justify-content:space-between;
  transition:all .45s cubic-bezier(.4,0,.2,1);
}
#nav.stuck {
  top:var(--banner-h);
  background:rgba(43,58,140,.96);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 8px 32px rgba(43,58,140,.3);
}
.nav-logo {
  position:absolute; left:50%; top:50%;
  transform:translate(-50%, -50%);
  height:220px; width:220px;
  transition:all .45s;
}
.nav-logo img {
  width:100%; height:100%; object-fit:contain;
  border-radius:50%;
  transition:transform .5s ease;
}
.nav-logo:hover img { transform:rotate(-12deg) scale(1.08); }
.nav-logo:hover { transform:translate(-50%, -50%); }
#nav.stuck .nav-logo { height:160px; width:160px; }

.nav-links {
  display:flex; gap:2rem;
  font-family:var(--futura);
}
.nav-links a {
  color:#fff;
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  position:relative;
  padding:.3rem 0;
  transition:color .3s;
}
.nav-links a::before {
  content:'';
  position:absolute; bottom:-2px; left:0;
  width:0; height:2px;
  background:var(--teal);
  transition:width .35s cubic-bezier(.4,0,.2,1);
}
.nav-links a:hover::before, .nav-links a.active::before { width:100%; }
.nav-links a:hover { color:var(--teal); }
.nav-links a.active { color:var(--teal); }

.nav-right { display:flex; align-items:center; gap:1rem; }
.cart-btn-nav {
  display:flex; align-items:center; gap:.5rem;
  background:rgba(255,255,255,.12);
  border:1.5px solid rgba(255,255,255,.28);
  border-radius:50px;
  padding:.5rem 1.1rem;
  color:#fff;
  font-size:.72rem; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
  transition:all .3s;
}
.cart-btn-nav:hover {
  background:var(--teal);
  border-color:var(--teal);
  transform:translateY(-2px) scale(1.03);
}
.cart-count {
  background:var(--rose);
  color:var(--navy);
  width:20px; height:20px;
  border-radius:50%;
  font-size:.65rem; font-weight:900;
  display:inline-flex; align-items:center; justify-content:center;
}

.burger { display:none; }

/* ─── LAYOUT HELPERS ─── */
.page-content { padding-top:calc(var(--banner-h) + var(--nav-h)); }
.page-hero { padding-top:0; }
.container { max-width:1240px; margin:0 auto; padding:0 2rem; }
.container-lg { max-width:1440px; margin:0 auto; padding:0 2rem; }
.container-narrow { max-width:820px; margin:0 auto; padding:0 2rem; }
.sec { padding:7rem 2rem; position:relative; overflow:hidden; }
.sec-lg { padding:10rem 2rem; position:relative; overflow:hidden; }
.sec-sm { padding:4rem 2rem; position:relative; }

/* ─── TYPOGRAPHIE ─── */
.eyebrow {
  display:inline-flex; align-items:center; gap:.5rem;
  font-family:var(--futura);
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--teal);
  margin-bottom:1rem;
}
.eyebrow::before { content:''; width:28px; height:2px; background:var(--teal); }
.eyebrow.on-dark { color:var(--teal); }
.eyebrow.rose { color:var(--rose-dark); }
.eyebrow.rose::before { background:var(--rose-dark); }
.eyebrow.yellow { color:var(--yellow-dark); }
.eyebrow.yellow::before { background:var(--yellow-dark); }
.eyebrow.navy { color:var(--navy); }
.eyebrow.navy::before { background:var(--navy); }

.h-display {
  font-family:var(--futura);
  font-weight:800;
  font-size:clamp(3rem, 9vw, 8rem);
  line-height:.88;
  letter-spacing:-.035em;
  color:var(--navy);
  text-transform:uppercase;
}
.h-hero {
  font-family:var(--futura);
  font-weight:800;
  font-size:clamp(2.6rem, 7vw, 6rem);
  line-height:.95;
  letter-spacing:-.025em;
  color:var(--navy);
  text-transform:uppercase;
}
.h-hero.white { color:#fff; }
.h-hero .italic {
  font-family:var(--serif);
  font-style:italic;
  font-weight:400;
  text-transform:none;
  color:var(--teal);
  letter-spacing:-.02em;
}
.h-hero .accent-rose { color:var(--rose-dark); }
.h-hero .accent-teal { color:var(--teal); }
.h-hero .accent-yellow { color:var(--yellow-dark); }

.h-sec {
  font-family:var(--futura);
  font-weight:800;
  font-size:clamp(2rem, 5vw, 4rem);
  line-height:1;
  letter-spacing:-.02em;
  color:var(--navy);
  text-transform:uppercase;
}
.h-sec .italic { font-family:var(--serif); font-style:italic; font-weight:400; text-transform:none; }
.h-sec.white { color:#fff; }
.h-sec.teal { color:var(--teal); }

.lead {
  font-family:var(--futura);
  font-weight:400;
  font-size:clamp(1rem, 1.3vw, 1.15rem);
  line-height:1.7;
  color:rgba(43,58,140,.65);
  max-width:620px;
}
.lead.white { color:rgba(255,255,255,.75); }

.sub { font-size:1rem; color:rgba(43,58,140,.55); font-weight:400; margin-top:.8rem; }
.sub.white { color:rgba(255,255,255,.65); }

.sec-head { text-align:center; margin-bottom:4.5rem; }
.sec-head .lead { margin:1rem auto 0; }

/* ─── BOUTONS ─── */
.btn {
  display:inline-flex; align-items:center; gap:.6rem;
  padding:1rem 2.2rem;
  font-family:var(--futura);
  font-size:.8rem; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
  border-radius:50px;
  border:none;
  position:relative;
  overflow:hidden;
  transition:all .4s cubic-bezier(.4,0,.2,1);
  z-index:1;
}
.btn-teal { background:var(--teal); color:#fff; }
.btn-teal::before {
  content:''; position:absolute; inset:0;
  background:var(--navy);
  transform:translateX(-100%);
  transition:transform .45s cubic-bezier(.4,0,.2,1);
  z-index:-1;
}
.btn-teal:hover::before { transform:translateX(0); }
.btn-teal:hover { transform:translateY(-3px); box-shadow:var(--sh-teal); }

.btn-navy { background:var(--navy); color:#fff; }
.btn-navy::before {
  content:''; position:absolute; inset:0;
  background:var(--teal);
  transform:translateX(-100%);
  transition:transform .45s;
  z-index:-1;
}
.btn-navy:hover::before { transform:translateX(0); }
.btn-navy:hover { transform:translateY(-3px); box-shadow:var(--sh-md); }

.btn-rose { background:var(--rose); color:var(--navy); }
.btn-rose:hover { background:var(--rose-dark); transform:translateY(-3px); }

.btn-yellow { background:var(--yellow); color:var(--navy); }
.btn-yellow:hover { background:var(--yellow-dark); transform:translateY(-3px); }

.btn-outline {
  background:transparent;
  color:var(--navy);
  border:2px solid var(--navy);
}
.btn-outline:hover { background:var(--navy); color:#fff; transform:translateY(-3px); }

.btn-outline-white {
  background:transparent;
  color:#fff;
  border:1.5px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  border-color:var(--teal);
  color:var(--teal);
  transform:translateY(-3px);
}

.btn-ghost {
  background:transparent; color:var(--navy);
  padding:.6rem 1.2rem;
}
.btn-ghost:hover { color:var(--teal); }

.btn .arr { display:inline-block; transition:transform .3s; font-size:1rem; }
.btn:hover .arr { transform:translateX(4px); }

.btn-pill-big {
  display:inline-flex; align-items:center; gap:1rem;
  padding:1.3rem 1.3rem 1.3rem 2.2rem;
  border-radius:100px;
  background:var(--teal);
  color:#fff;
  font-family:var(--futura); font-weight:700;
  font-size:.85rem; letter-spacing:.14em; text-transform:uppercase;
  transition:all .4s;
}
.btn-pill-big .circ {
  width:44px; height:44px; border-radius:50%;
  background:#fff; color:var(--teal);
  display:inline-flex; align-items:center; justify-content:center;
  font-size:1.1rem;
  transition:transform .35s;
}
.btn-pill-big:hover { background:var(--navy); transform:translateY(-3px); box-shadow:var(--sh-lg); }
.btn-pill-big:hover .circ { transform:translateX(6px) rotate(-45deg); color:var(--navy); }

/* ─── TAG/CHIP ─── */
.tag {
  display:inline-flex; align-items:center; gap:.4rem;
  padding:.35rem 1rem;
  border-radius:50px;
  background:var(--teal-light);
  color:var(--teal-xdark);
  font-family:var(--futura);
  font-size:.7rem; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase;
}
.tag.rose { background:var(--rose-light); color:var(--navy); }
.tag.yellow { background:var(--yellow-light); color:var(--navy); }
.tag.navy { background:var(--navy); color:#fff; }

/* ─── FORMES DÉCORATIVES ─── */
.blob {
  position:absolute;
  border-radius:50%;
  filter:blur(50px);
  z-index:0;
  pointer-events:none;
  opacity:.5;
}
.blob-teal { background:var(--teal); }
.blob-rose { background:var(--rose); }
.blob-yellow { background:var(--yellow); }
.blob-navy { background:var(--navy); opacity:.2; }

@keyframes blob-morph {
  0%, 100% { border-radius:60% 40% 30% 70% / 60% 30% 70% 40%; }
  50%      { border-radius:30% 60% 70% 40% / 50% 60% 30% 60%; }
}
.morph {
  animation: blob-morph 14s ease-in-out infinite, float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform:translateY(0); }
  50%      { transform:translateY(-25px); }
}

/* ─── REVEAL ANIM ─── */
.rv   { opacity:0; transform:translateY(50px); }
.rv-l { opacity:0; transform:translateX(-50px); }
.rv-r { opacity:0; transform:translateX(50px); }
.rv-s { opacity:0; transform:scale(.92); }
.rv.in, .rv-l.in, .rv-r.in, .rv-s.in {
  opacity:1;
  transform:translate(0) scale(1);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}

/* ─── TOAST ─── */
#toast {
  position:fixed;
  bottom:2rem; left:50%;
  transform:translateX(-50%) translateY(30px);
  background:var(--navy);
  color:#fff;
  padding:1rem 2rem;
  border-radius:50px;
  font-family:var(--futura);
  font-size:.8rem; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
  z-index:99000;
  opacity:0;
  transition:all .45s;
  pointer-events:none;
  white-space:nowrap;
  box-shadow:var(--sh-lg);
}
#toast.show { opacity:1; transform:translateX(-50%) translateY(0); }

/* ─── TOP BUTTON ─── */
#top-btn {
  position:fixed;
  bottom:2rem; right:2rem;
  z-index:7000;
  width:52px; height:52px;
  background:var(--teal);
  border:none; border-radius:50%;
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--sh-teal);
  opacity:0;
  pointer-events:none;
  transition:all .45s;
  transform:translateY(15px);
  font-size:1.2rem;
}
#top-btn.show { opacity:1; pointer-events:all; transform:translateY(0); }
#top-btn:hover { background:var(--navy); transform:translateY(-4px) scale(1.08); }

/* ─── PRODUCT CARD ─── */
.pcard {
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--sh-sm);
  transition:all .5s cubic-bezier(.22,.61,.36,1);
  position:relative;
  display:flex; flex-direction:column;
}
.pcard:hover {
  box-shadow:var(--sh-lg);
  transform:translateY(-10px);
}
.pcard-img {
  position:relative;
  display:flex; align-items:center; justify-content:center;
  padding:2.8rem 2rem 1.5rem;
  min-height:260px;
  overflow:hidden;
}
.pcard-img::before {
  content:''; position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:180px; height:180px;
  background:rgba(255,255,255,.3);
  border-radius:50%;
  filter:blur(30px);
}
.pcard-img img {
  max-height:200px;
  width:auto;
  object-fit:contain;
  position:relative;
  z-index:1;
  transition:transform .6s cubic-bezier(.22,.61,.36,1);
}
.pcard:hover .pcard-img img {
  transform:scale(1.12) rotate(-4deg);
}
.pcard-body {
  padding:1.8rem 2rem 2rem;
  background:#fff;
}
.pcard-species {
  font-family:var(--futura);
  font-size:.68rem; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--teal);
  margin-bottom:.5rem;
}
.pcard-name {
  font-family:var(--futura);
  font-size:2rem;
  font-weight:800;
  letter-spacing:-.015em;
  color:var(--navy);
  line-height:1;
  margin-bottom:.6rem;
  text-transform:uppercase;
}
.pcard-desc {
  font-family:var(--futura);
  font-weight:400;
  font-size:.88rem;
  color:rgba(43,58,140,.6);
  line-height:1.55;
  margin-bottom:1.5rem;
}
.pcard-foot {
  display:flex; align-items:center; justify-content:space-between;
  padding-top:1.2rem;
  border-top:1px solid rgba(43,58,140,.08);
}
.pcard-price {
  font-family:var(--futura);
  font-size:1.8rem;
  font-weight:800;
  color:var(--navy);
  line-height:1;
}
.pcard-price small {
  font-size:.7rem;
  font-weight:500;
  color:rgba(43,58,140,.45);
  letter-spacing:.05em;
  text-transform:uppercase;
  display:block;
  margin-top:.2rem;
}

.pcard-badge {
  position:absolute; top:1rem; right:1rem;
  z-index:3;
  padding:.32rem .9rem;
  border-radius:50px;
  font-family:var(--futura);
  font-size:.65rem; font-weight:800;
  letter-spacing:.14em; text-transform:uppercase;
}

/* ─── SIZE SELECTOR ─── */
.size-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:.55rem;
  margin-bottom:1.4rem;
}
.size-btn {
  padding:.65rem .8rem;
  border:1.5px solid rgba(43,58,140,.15);
  border-radius:14px;
  background:#fff;
  color:var(--navy);
  font-family:var(--futura);
  font-weight:600;
  text-align:center;
  transition:all .25s;
  display:flex; flex-direction:column;
  gap:.1rem;
  cursor:none;
}
.size-btn .w {
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.size-btn .p {
  font-size:.7rem;
  color:rgba(43,58,140,.55);
  font-weight:500;
}
.size-btn:hover {
  border-color:var(--teal);
  color:var(--teal);
  transform:translateY(-2px);
}
.size-btn.active {
  background:var(--navy);
  border-color:var(--navy);
  color:#fff;
  transform:translateY(-2px);
}
.size-btn.active .p { color:rgba(255,255,255,.7); }

/* ─── QTY + ATC ─── */
.qty-atc-row {
  display:flex; gap:.7rem; align-items:stretch;
}
.qty-box {
  display:flex; align-items:center;
  background:var(--teal-light);
  border-radius:50px;
  padding:.3rem;
}
.qty-btn-sm {
  width:32px; height:32px;
  border-radius:50%;
  background:#fff;
  color:var(--navy);
  font-weight:700; font-size:1rem;
  display:flex; align-items:center; justify-content:center;
  transition:all .2s;
}
.qty-btn-sm:hover { background:var(--teal); color:#fff; }
.qty-val-sm {
  min-width:34px; text-align:center;
  font-weight:700; color:var(--navy);
  font-size:.9rem;
}
.btn-atc {
  flex:1;
  background:var(--navy);
  color:#fff;
  border-radius:50px;
  padding:.85rem 1.6rem;
  font-family:var(--futura);
  font-size:.76rem; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
  display:flex; align-items:center; justify-content:center; gap:.5rem;
  transition:all .3s;
  position:relative; overflow:hidden;
}
.btn-atc::before {
  content:''; position:absolute; inset:0;
  background:var(--teal);
  transform:translateY(100%);
  transition:transform .4s;
  z-index:0;
}
.btn-atc > * { position:relative; z-index:1; }
.btn-atc:hover::before { transform:translateY(0); }
.btn-atc:hover { transform:scale(1.02); }
.btn-atc:active { transform:scale(.98); }
.btn-atc.added { background:var(--teal); }
.btn-atc.added::before { transform:translateY(0); }

/* ─── FOOTER ─── */
footer {
  background:var(--teal-xdark);
  color:#fff;
  padding:6rem 2rem 2rem;
  position:relative;
  overflow:hidden;
}
footer::before {
  content:''; position:absolute;
  top:-100px; right:-100px;
  width:400px; height:400px;
  background:var(--teal);
  border-radius:50%;
  filter:blur(120px);
  opacity:.4;
}
footer::after {
  content:''; position:absolute;
  bottom:-150px; left:-100px;
  width:450px; height:450px;
  background:var(--navy);
  border-radius:50%;
  filter:blur(130px);
  opacity:.3;
}
.ft-grid {
  display:grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap:3.5rem;
  max-width:1240px;
  margin:0 auto 3.5rem;
  position:relative; z-index:1;
}
.ft-logo { height:80px; width:80px; margin-bottom:1.2rem; }
.ft-logo img { width:100%; height:100%; object-fit:contain; border-radius:50%; }
.ft-brand-name {
  font-family:var(--futura);
  font-weight:800;
  font-size:1.1rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:.3rem;
}
.ft-desc {
  color:rgba(255,255,255,.7);
  font-size:.88rem;
  line-height:1.7;
  margin:0 0 1.5rem;
}
.ft-addr {
  font-size:.82rem;
  color:rgba(255,255,255,.65);
  line-height:1.6;
  margin-bottom:1.3rem;
  font-style:normal;
}
.ft-addr strong { color:#fff; display:block; margin-bottom:.2rem; font-weight:700; font-size:.75rem; letter-spacing:.1em; text-transform:uppercase; }

.nl-form {
  display:flex;
  background:rgba(255,255,255,.12);
  border-radius:50px;
  overflow:hidden;
  padding:.3rem;
  backdrop-filter:blur(8px);
}
.nl-input {
  flex:1;
  padding:.75rem 1.4rem;
  background:none;
  border:none;
  color:#fff;
  font-family:var(--futura);
  font-size:.82rem;
  outline:none;
}
.nl-input::placeholder { color:rgba(255,255,255,.45); }
.nl-btn {
  background:var(--rose);
  color:var(--navy);
  border:none; border-radius:50px;
  padding:.7rem 1.4rem;
  font-family:var(--futura);
  font-size:.72rem; font-weight:800;
  letter-spacing:.14em; text-transform:uppercase;
  transition:all .3s;
}
.nl-btn:hover { background:#fff; transform:scale(1.05); }

.ft-h {
  font-family:var(--futura);
  font-weight:800;
  font-size:.7rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--teal-soft);
  margin-bottom:1.5rem;
}
.ft-links {
  display:flex; flex-direction:column;
  gap:.85rem;
}
.ft-links a {
  color:rgba(255,255,255,.7);
  font-size:.9rem;
  font-weight:400;
  transition:all .25s;
  display:inline-flex; align-items:center; gap:.4rem;
}
.ft-links a:hover { color:var(--rose); transform:translateX(4px); }

.ft-socials {
  display:flex; gap:.6rem;
  margin-top:1rem;
}
.ft-soc {
  width:42px; height:42px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  display:inline-flex; align-items:center; justify-content:center;
  color:#fff;
  transition:all .3s;
  font-size:.9rem;
}
.ft-soc:hover { background:var(--rose); color:var(--navy); transform:translateY(-3px) rotate(-10deg); }

.ft-coluche {
  max-width:1240px;
  margin:0 auto 2rem;
  padding:2rem 0;
  border-top:1px solid rgba(255,255,255,.14);
  border-bottom:1px solid rgba(255,255,255,.14);
  text-align:center;
  position:relative; z-index:1;
}
.ft-coluche .q {
  font-family:var(--serif);
  font-style:italic;
  font-size:clamp(1.1rem, 2.2vw, 1.6rem);
  color:var(--teal-soft);
  font-weight:400;
  line-height:1.4;
  max-width:780px;
  margin:0 auto;
}
.ft-coluche .a {
  margin-top:.8rem;
  font-family:var(--futura);
  font-size:.72rem;
  color:rgba(255,255,255,.5);
  letter-spacing:.2em;
  text-transform:uppercase;
}

.ft-bottom {
  display:flex; justify-content:space-between; align-items:center;
  max-width:1240px; margin:0 auto;
  gap:1rem;
  position:relative; z-index:1;
  flex-wrap:wrap;
}
.ft-copy {
  color:rgba(255,255,255,.45);
  font-size:.75rem;
  letter-spacing:.08em;
}
.ft-pay {
  display:flex; gap:.5rem; align-items:center;
}
.ft-pay-chip {
  background:rgba(255,255,255,.1);
  padding:.35rem .7rem;
  border-radius:6px;
  font-size:.65rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
}

/* ─── CARTES BÉNÉFICES ─── */
.benefit-card {
  background:#fff;
  border-radius:24px;
  padding:2rem 1.8rem;
  box-shadow:var(--sh-sm);
  transition:all .4s cubic-bezier(.22,.61,.36,1);
  position:relative; overflow:hidden;
}
.benefit-card:hover {
  transform:translateY(-8px);
  box-shadow:var(--sh-md);
}
.benefit-num {
  font-family:var(--futura);
  font-weight:800;
  font-size:4rem;
  line-height:1;
  color:var(--teal);
  opacity:.2;
  letter-spacing:-.05em;
  margin-bottom:.6rem;
  transition:all .4s;
}
.benefit-card:hover .benefit-num { opacity:1; color:var(--rose-dark); transform:scale(1.08); }
.benefit-title {
  font-family:var(--futura);
  font-weight:800;
  font-size:1.35rem;
  color:var(--navy);
  margin-bottom:.5rem;
  text-transform:uppercase;
  letter-spacing:-.01em;
}
.benefit-desc {
  font-size:.85rem;
  color:rgba(43,58,140,.6);
  line-height:1.6;
}

/* ─── STRIP MARQUEE ─── */
.marquee {
  padding:1.8rem 0;
  overflow:hidden;
  background:var(--navy);
  color:#fff;
  position:relative;
}
.marquee-wrap {
  display:flex;
  width:max-content;
  animation:tick 35s linear infinite;
}
.marquee-item {
  display:flex; align-items:center; gap:2.5rem;
  padding-right:4rem;
  font-family:var(--futura);
  font-weight:800;
  font-size:2rem;
  letter-spacing:-.01em;
  text-transform:uppercase;
  white-space:nowrap;
}
.marquee-item .dot {
  width:12px; height:12px; border-radius:50%;
  background:var(--teal);
  display:inline-block;
}
.marquee-item .dot.rose { background:var(--rose); }
.marquee-item .dot.yellow { background:var(--yellow); }
.marquee-item .italic {
  font-family:var(--serif);
  font-weight:400;
  font-style:italic;
  color:var(--teal);
  text-transform:none;
}

/* ─── GLASS CARD ─── */
.glass {
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.25);
  border-radius:var(--radius);
}

/* ─── STATS ─── */
.stats-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:2rem;
  margin-top:3rem;
}
.stat-card { text-align:center; }
.stat-num {
  font-family:var(--futura);
  font-weight:800;
  font-size:clamp(2.5rem, 5vw, 4rem);
  color:var(--teal);
  line-height:1;
  letter-spacing:-.03em;
  margin-bottom:.3rem;
}
.stat-lbl {
  font-family:var(--futura);
  font-size:.72rem; font-weight:700;
  letter-spacing:.18em; text-transform:uppercase;
  color:rgba(255,255,255,.75);
}
.stat-card.dark .stat-num { color:var(--navy); }
.stat-card.dark .stat-lbl { color:rgba(43,58,140,.55); }

/* ─── BREADCRUMB ─── */
.crumbs {
  display:flex; gap:.5rem; align-items:center;
  padding:1.2rem 0;
  font-size:.75rem;
  color:rgba(43,58,140,.5);
  letter-spacing:.1em; text-transform:uppercase;
  font-weight:600;
}
.crumbs a { color:rgba(43,58,140,.7); transition:color .2s; }
.crumbs a:hover { color:var(--teal); }
.crumbs .sep { opacity:.4; }

/* ─── INPUTS (formulaires) ─── */
.field {
  display:flex; flex-direction:column; gap:.5rem;
  margin-bottom:1.2rem;
}
.field label {
  font-family:var(--futura);
  font-size:.7rem; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--navy);
}
.input, .textarea, .select {
  width:100%;
  padding:1rem 1.3rem;
  border:1.5px solid rgba(43,58,140,.15);
  border-radius:14px;
  background:#fff;
  color:var(--navy);
  font-family:var(--futura);
  font-size:.95rem;
  outline:none;
  transition:all .25s;
}
.input:focus, .textarea:focus, .select:focus {
  border-color:var(--teal);
  box-shadow:0 0 0 4px rgba(61,191,184,.14);
}
.textarea { resize:vertical; min-height:150px; font-family:var(--futura); line-height:1.6; }
.input::placeholder, .textarea::placeholder { color:rgba(43,58,140,.35); }

/* ─── TABLE ─── */
.table {
  width:100%;
  border-collapse:collapse;
  font-family:var(--futura);
}
.table th {
  text-align:left;
  padding:1rem 1.2rem;
  background:var(--teal-light);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--navy);
  border-bottom:2px solid var(--teal);
}
.table td {
  padding:1.2rem;
  border-bottom:1px solid rgba(43,58,140,.08);
  color:var(--navy);
  font-size:.9rem;
}
.table tr:hover td { background:var(--cream); }

/* ─── ACCORDIONS ─── */
.accordion-item {
  border-bottom:1.5px solid rgba(43,58,140,.1);
  padding:1.5rem 0;
}
.accordion-q {
  display:flex; justify-content:space-between; align-items:center;
  font-family:var(--futura);
  font-weight:700;
  font-size:1.05rem;
  color:var(--navy);
  text-transform:uppercase;
  letter-spacing:-.01em;
  cursor:none;
  padding:0;
  width:100%;
  text-align:left;
  transition:color .2s;
}
.accordion-q:hover { color:var(--teal); }
.accordion-q .plus {
  width:36px; height:36px;
  border-radius:50%;
  background:var(--teal-light);
  color:var(--teal-xdark);
  display:inline-flex; align-items:center; justify-content:center;
  font-size:1.2rem;
  transition:all .3s;
  flex-shrink:0;
}
.accordion-item.open .accordion-q .plus {
  background:var(--teal);
  color:#fff;
  transform:rotate(135deg);
}
.accordion-a {
  max-height:0;
  overflow:hidden;
  transition:max-height .4s cubic-bezier(.22,.61,.36,1), padding .3s;
  color:rgba(43,58,140,.7);
  font-size:.92rem;
  line-height:1.7;
}
.accordion-item.open .accordion-a { max-height:500px; padding-top:1rem; }

/* ─── PRODUIT PAGE — FULL SECTION ─── */
.caviar-full {
  min-height:85vh;
  padding:6rem 2rem;
  display:flex; align-items:center;
  position:relative;
  overflow:hidden;
}
.caviar-full-grid {
  max-width:1280px; margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5rem; align-items:center;
  position:relative; z-index:2;
}
.caviar-full.reverse .caviar-full-grid > :first-child { order:2; }
.caviar-visual {
  position:relative;
  aspect-ratio:1/1;
  display:flex; align-items:center; justify-content:center;
}
.caviar-visual-bg {
  position:absolute; inset:10%;
  border-radius:50%;
  filter:blur(60px);
  opacity:.45;
  z-index:0;
  animation:blob-morph 16s ease-in-out infinite;
}
.caviar-visual img {
  position:relative; z-index:2;
  max-width:80%; max-height:80%;
  object-fit:contain;
  transition:transform .5s ease;
  filter:drop-shadow(0 40px 60px rgba(0,0,0,.18));
}
.caviar-visual:hover img {
  transform:scale(1.06) rotate(-8deg);
}

.caviar-info { position:relative; z-index:2; }
.caviar-info .species {
  font-family:var(--futura);
  font-style:italic;
  font-size:.85rem;
  font-weight:500;
  letter-spacing:.02em;
  color:rgba(43,58,140,.5);
  margin-bottom:.5rem;
}
.caviar-info .name {
  font-family:var(--futura);
  font-weight:800;
  font-size:clamp(2.8rem, 6vw, 5rem);
  line-height:.9;
  letter-spacing:-.03em;
  text-transform:uppercase;
  color:var(--navy);
  margin-bottom:1.3rem;
}
.caviar-info .tagline {
  font-family:var(--serif);
  font-style:italic;
  font-size:clamp(1.2rem, 1.8vw, 1.5rem);
  color:var(--teal);
  margin-bottom:1.5rem;
  max-width:500px;
}
.caviar-info .desc {
  font-size:.98rem;
  color:rgba(43,58,140,.65);
  line-height:1.75;
  margin-bottom:2rem;
  max-width:520px;
}
.caviar-specs {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1rem;
  margin-bottom:2rem;
  max-width:520px;
}
.cspec {
  padding:1rem;
  background:rgba(255,255,255,.6);
  border-radius:14px;
  text-align:center;
  backdrop-filter:blur(8px);
}
.cspec-val {
  font-family:var(--futura);
  font-weight:800;
  font-size:1.4rem;
  color:var(--navy);
  line-height:1;
}
.cspec-lbl {
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(43,58,140,.6);
  margin-top:.35rem;
}

/* ─── LEGAL PAGES ─── */
.legal-content {
  max-width:820px;
  margin:0 auto;
  padding:4rem 2rem 6rem;
  font-family:var(--futura);
}
.legal-content h1 {
  font-family:var(--futura);
  font-weight:800;
  font-size:clamp(2rem, 4vw, 3rem);
  text-transform:uppercase;
  letter-spacing:-.02em;
  color:var(--navy);
  margin-bottom:.6rem;
  line-height:1;
}
.legal-content .legal-sub {
  color:rgba(43,58,140,.55);
  font-size:.9rem;
  margin-bottom:3rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.legal-content h2 {
  font-family:var(--futura);
  font-weight:800;
  font-size:1.3rem;
  text-transform:uppercase;
  letter-spacing:-.01em;
  color:var(--navy);
  margin:2.5rem 0 1rem;
  padding-top:2rem;
  border-top:1px solid rgba(43,58,140,.1);
}
.legal-content h3 {
  font-family:var(--futura);
  font-weight:700;
  font-size:1rem;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:var(--teal-xdark);
  margin:1.5rem 0 .8rem;
}
.legal-content p, .legal-content li {
  font-size:.95rem;
  line-height:1.75;
  color:rgba(43,58,140,.8);
  margin-bottom:1rem;
}
.legal-content ul, .legal-content ol {
  padding-left:1.5rem;
  margin-bottom:1.5rem;
}
.legal-content ul li {
  list-style:disc;
  margin-bottom:.5rem;
}
.legal-content ol li { list-style:decimal; margin-bottom:.5rem; }
.legal-content a {
  color:var(--teal);
  border-bottom:1px solid var(--teal-soft);
  transition:all .2s;
}
.legal-content a:hover { color:var(--navy); border-color:var(--navy); }
.legal-content strong { color:var(--navy); font-weight:700; }

/* ─── PAIRING / SERVING CARDS ─── */
.pair-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:1.5rem;
  margin-top:3rem;
}
.pair-card {
  padding:2rem 1.5rem;
  border-radius:20px;
  background:#fff;
  box-shadow:var(--sh-sm);
  text-align:center;
  transition:all .35s;
}
.pair-card:hover { transform:translateY(-6px); box-shadow:var(--sh-md); }
.pair-emoji {
  font-size:2.5rem;
  margin-bottom:1rem;
}
.pair-title {
  font-family:var(--futura);
  font-weight:800;
  font-size:1rem;
  letter-spacing:-.01em;
  color:var(--navy);
  text-transform:uppercase;
  margin-bottom:.4rem;
}
.pair-desc {
  font-size:.82rem;
  color:rgba(43,58,140,.6);
  line-height:1.55;
}

/* ─── PROCESS STEPS ─── */
.steps {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
  margin-top:3.5rem;
  counter-reset:step;
}
.step {
  padding:2rem 1.5rem;
  border-radius:20px;
  background:#fff;
  box-shadow:var(--sh-sm);
  position:relative;
  transition:all .35s;
}
.step:hover { transform:translateY(-8px); box-shadow:var(--sh-md); }
.step::before {
  counter-increment:step;
  content:counter(step, decimal-leading-zero);
  position:absolute;
  top:1rem; right:1.3rem;
  font-family:var(--futura);
  font-weight:800;
  font-size:3rem;
  line-height:1;
  color:var(--teal-light);
  letter-spacing:-.04em;
}
.step-title {
  font-family:var(--futura);
  font-weight:800;
  font-size:1.1rem;
  text-transform:uppercase;
  color:var(--navy);
  margin-bottom:.5rem;
  letter-spacing:-.01em;
}
.step-desc {
  font-size:.84rem;
  color:rgba(43,58,140,.6);
  line-height:1.55;
}

/* ─── SUBSCRIPTION CARD ─── */
.sub-card {
  background:#fff;
  border-radius:28px;
  padding:3rem 2.2rem;
  box-shadow:var(--sh-sm);
  transition:all .4s;
  position:relative;
  overflow:hidden;
}
.sub-card-img {
  margin: -1.5rem -.8rem 1.4rem;
  aspect-ratio: 16/10;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(43,58,140,.06) 0%, rgba(61,191,184,.08) 100%);
  display: flex; align-items: center; justify-content: center;
}
.sub-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.sub-card:hover .sub-card-img img { transform: scale(1.06); }
.sub-card.featured .sub-card-img { background: rgba(255,255,255,.06); }
.sub-card:hover { transform:translateY(-10px); box-shadow:var(--sh-lg); }
.sub-card.featured {
  background:linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
  color:#fff;
  transform:scale(1.04);
}
.sub-card.featured::before {
  content:'POPULAIRE';
  position:absolute; top:1.5rem; right:1.5rem;
  background:var(--rose);
  color:var(--navy);
  padding:.3rem .9rem;
  border-radius:50px;
  font-size:.65rem; font-weight:800;
  letter-spacing:.14em;
}
.sub-card-name {
  font-family:var(--futura);
  font-weight:800;
  font-size:1.8rem;
  letter-spacing:-.01em;
  color:var(--navy);
  text-transform:uppercase;
  margin-bottom:.5rem;
}
.sub-card.featured .sub-card-name { color:#fff; }
.sub-card-price {
  font-family:var(--futura);
  font-weight:800;
  font-size:3.5rem;
  color:var(--teal);
  letter-spacing:-.03em;
  line-height:1;
  margin-bottom:.3rem;
}
.sub-card-period {
  font-size:.8rem;
  color:rgba(43,58,140,.55);
  letter-spacing:.1em;
  text-transform:uppercase;
  margin-bottom:2rem;
}
.sub-card.featured .sub-card-period { color:rgba(255,255,255,.6); }
.sub-card-features {
  margin-bottom:2rem;
  padding-top:1.5rem;
  border-top:1px solid rgba(43,58,140,.1);
}
.sub-card.featured .sub-card-features { border-color:rgba(255,255,255,.15); }
.sub-card-features li {
  padding:.6rem 0;
  font-size:.9rem;
  color:rgba(43,58,140,.75);
  display:flex; align-items:flex-start; gap:.7rem;
}
.sub-card.featured .sub-card-features li { color:rgba(255,255,255,.85); }
.sub-card-features li::before {
  content:'✓';
  color:var(--teal);
  font-weight:700;
  flex-shrink:0;
}

/* ─── CONTACT INFO ─── */
.contact-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  max-width:1100px;
  margin:0 auto;
  padding:4rem 2rem;
}
.contact-info {
  display:flex; flex-direction:column;
  gap:2rem;
}
.contact-item {
  padding:1.6rem 1.8rem;
  background:#fff;
  border-radius:20px;
  box-shadow:var(--sh-sm);
  display:flex; gap:1.2rem; align-items:flex-start;
}
.contact-icon {
  width:50px; height:50px; flex-shrink:0;
  border-radius:50%;
  background:var(--teal-light);
  color:var(--teal-xdark);
  display:flex; align-items:center; justify-content:center;
  font-size:1.3rem;
}
.contact-info-title {
  font-family:var(--futura);
  font-weight:800;
  font-size:.75rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--teal);
  margin-bottom:.35rem;
}
.contact-info-text {
  font-size:.95rem;
  color:var(--navy);
  line-height:1.55;
  font-weight:500;
}

/* ─── RESPONSIVE ─── */
@media(max-width:1024px) {
  .caviar-full-grid { grid-template-columns:1fr; gap:3rem; }
  .caviar-full.reverse .caviar-full-grid > :first-child { order:0; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .steps { grid-template-columns:repeat(2,1fr); }
  .ft-grid { grid-template-columns:1.2fr 1fr 1fr; }
  .ft-grid > *:first-child { grid-column:1/-1; }
  .contact-grid { grid-template-columns:1fr; gap:2.5rem; }
}
@media(max-width:900px) {
  #nav {
    padding:0 1rem;
  }
  .nav-links { display:none; }
  .nav-logo {
    height:90px; width:90px;
    left:50%;
  }
  #nav.stuck .nav-logo { height:70px; width:70px; }
  .nav-right {
    margin-left:auto;
    gap:.6rem;
  }
  .cart-btn-nav {
    padding:.45rem .8rem;
    font-size:.65rem;
  }
  .burger {
    display:flex; flex-direction:column;
    justify-content:center; align-items:center; gap:4px;
    width:42px; height:42px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.28);
    border-radius:50%;
    flex-shrink:0;
    padding:0;
    cursor:pointer;
  }
  .burger span {
    display:block;
    width:16px; height:2px;
    background:#fff;
    border-radius:2px;
    transition:all .3s;
  }
  .sec, .sec-lg { padding:5rem 1.5rem; }
  body.menu-open { overflow:hidden; }
  body.menu-open .nav-links {
    display:flex !important;
    flex-direction:column;
    position:fixed;
    top:calc(var(--banner-h) + var(--nav-h));
    left:0; right:0; bottom:0;
    background:rgba(43,58,140,.98);
    backdrop-filter:blur(20px);
    padding:3rem 2rem;
    gap:2rem;
    z-index:7000;
    align-items:center;
    justify-content:flex-start;
  }
  body.menu-open .nav-links a {
    font-size:1.4rem;
    letter-spacing:.06em;
  }
  body.menu-open .nav-right .nav-links {
    top:auto; padding-top:0;
  }
}
@media(max-width:600px) {
  :root { --nav-h:64px; --banner-h:36px; }
  .nav-logo { height:70px; width:70px; }
  #nav.stuck .nav-logo { height:54px; width:54px; }
  .cart-btn-nav span:not(.cart-count) { display:none; }
  .cart-btn-nav { padding:.5rem .6rem; }
  .ft-grid { grid-template-columns:1fr; gap:2.5rem; }
  .ft-bottom { flex-direction:column; text-align:center; }
  body { cursor:auto; }
  button, a { cursor:pointer; }
  #cur, #cur-ring { display:none; }
  .marquee-item { font-size:1.3rem; }
  .size-grid { grid-template-columns:repeat(2,1fr); }
  .stats-grid { grid-template-columns:1fr 1fr; gap:1rem; }
  .caviar-specs { grid-template-columns:1fr; }
  /* Mobile hero adjustments */
  .hero h1 { font-size:clamp(2.4rem, 11vw, 4.5rem) !important; }
  .hero-stats { flex-wrap:wrap; gap:1.4rem !important; }
  .hs-num { font-size:1.6rem !important; }
  /* Mobile caviar mini */
  .caviar-mini { min-height:380px !important; }
  .caviar-mini-img { width:48% !important; max-width:200px !important; }
  /* Mobile abonnement */
  .abo-content { grid-template-columns:1fr !important; }
  .abo-visual { aspect-ratio:1/1; max-height:380px; margin:0 auto; width:100%; }
  /* Mobile esturgeon */
  .sturgeon-wrap { grid-template-columns:1fr !important; }
  .sturgeon-img { aspect-ratio:4/3; max-height:340px; }
}

/* ═══════════════════════════════════════════════════════════════
   AMÉLIORATIONS GLOBALES (enhance.js)
═══════════════════════════════════════════════════════════════ */

/* Page fade-in (opacity-only — pas de transform sur body sinon ça
   casse les position:fixed enfants comme le curseur custom) */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: pageFadeIn .45s ease both; }

/* Scroll progress bar */
#scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose) 0%, var(--yellow) 50%, var(--teal) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 10000;
  pointer-events: none;
  box-shadow: 0 1px 6px rgba(43,58,140,.25);
  transition: transform .12s ease-out;
  border-radius: 0 2px 2px 0;
}

/* Better focus rings (a11y) */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Selection color */
::selection { background: var(--teal); color: #fff; }
::-moz-selection { background: var(--teal); color: #fff; }

/* Smooth scrolling everywhere as fallback */
html { scroll-behavior: smooth; }

/* Image safety — prevent layout shift */
img { max-width: 100%; height: auto; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  body { opacity: 1 !important; }
  #scroll-progress { display: none; }
}

/* ═══════════════════════════════════════════
   HOMEPAGE-SPECIFIC STYLES (depuis index.html)
═══════════════════════════════════════════ */
/* ═══ HOME PAGE SPECIFIC ═══ */

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--banner-h) + var(--nav-h) + 3rem) 2rem 4rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 55%, var(--navy) 100%);
}
.hero-bg-photo {
  position: absolute;
  inset: 0;
  background: url('../wetransfer_photos-produits_2025-08-01_1326/BELUGA(5).jpeg') center/cover no-repeat;
  opacity: .28;
  mix-blend-mode: luminosity;
  z-index: 0;
}
.hero .blob-a {
  top: 10%; right: -8%; width: 520px; height: 520px;
  background: var(--rose); opacity: .3;
}
.hero .blob-b {
  bottom: -15%; left: -5%; width: 480px; height: 480px;
  background: var(--yellow); opacity: .22;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-left { color: #fff; }
.hero-pre {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--futura);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 1.8rem;
  background: rgba(255,255,255,.1);
  padding: .5rem 1.1rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
}
.hero-pre .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rose);
  animation: pulse 1.6s ease infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.6); opacity: .4; }
}
.hero h1 {
  font-family: var(--futura);
  font-weight: 800;
  font-size: clamp(2.8rem, 7.5vw, 7rem);
  line-height: .92;
  letter-spacing: -.035em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 .it {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  color: var(--rose);
  letter-spacing: -.02em;
  display: inline-block;
  transform: translateY(8px);
}
.hero h1 .stroke {
  -webkit-text-stroke: 2px #fff;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 490px;
  font-weight: 400;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex; gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.18);
  max-width: 560px;
}
.hs-num {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--rose);
  line-height: 1;
  letter-spacing: -.02em;
}
.hs-lbl {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: .4rem;
}

/* HERO RIGHT - floating product */
.hero-right {
  position: relative;
  aspect-ratio: 1/1;
  max-height: 620px;
}
.hero-card {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255,255,255,.25);
  padding: 3rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}
.hero-card-photo {
  position: absolute; inset: 0;
  background: url('../wetransfer_photos-produits_2025-08-01_1326/BELUGA(8).jpeg') center/cover no-repeat;
  border-radius: 50px;
  opacity: .92;
}
.hero-card-overlay {
  position: absolute; inset: 0;
  border-radius: 50px;
  background: linear-gradient(155deg, rgba(43,58,140,.35) 0%, rgba(61,191,184,.35) 100%);
}
.hero-float-tin {
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 50px rgba(0,0,0,.45), 0 0 0 5px var(--ring, var(--teal)), 0 0 40px 0 var(--glow, rgba(61,191,184,.4));
  overflow: hidden;
  padding: 0;
  z-index: 3;
  transition: transform .5s ease;
}
.hero-float-tin:hover { transform: scale(1.08) rotate(-3deg); }
.hero-float-tin img {
  width: 115%; height: 115%;
  object-fit: cover;
  object-position: center 42%;
  transition: transform .6s ease;
}
.hero-float-tin:hover img { transform: scale(1.12); }
.hft-a {
  top: 8%; right: 12%;
  --ring: var(--rose);
  --glow: rgba(247,197,197,.55);
  animation: float 5.5s ease-in-out infinite;
}
.hft-b {
  bottom: 10%; left: 8%;
  --ring: var(--teal);
  --glow: rgba(61,191,184,.5);
  animation: float 7s ease-in-out infinite reverse;
}
.hft-c {
  top: 45%; right: -5%;
  --ring: var(--yellow);
  --glow: rgba(242,223,110,.5);
  width: 125px; height: 125px;
  animation: float 6s ease-in-out -2s infinite;
}
.hero-tag-float {
  position: absolute; z-index: 4;
  background: #fff;
  color: var(--navy);
  padding: .7rem 1.3rem;
  border-radius: 50px;
  font-family: var(--futura);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 15px 40px rgba(0,0,0,.18);
  display: inline-flex; align-items: center; gap: .5rem;
}
.hero-tag-1 { top: 28%; left: 12%; animation: float 4s ease-in-out infinite; }
.hero-tag-2 { bottom: 22%; right: 10%; animation: float 5s ease-in-out -1s infinite; }

.scroll-indic {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.55);
  font-family: var(--futura);
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  z-index: 5;
}
.scroll-indic .line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--rose));
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { opacity: .2; transform: scaleY(.4); }
  50%      { opacity: 1; transform: scaleY(1); }
}

/* ─── SECTION CAVIARS ─── */
.caviars-sec {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--teal-light) 100%);
  position: relative;
  overflow: hidden;
}
.caviars-sec .blob-deco {
  position: absolute; top: 10%; left: -5%;
  width: 400px; height: 400px;
  background: var(--rose); opacity: .2;
  border-radius: 50%;
  filter: blur(80px);
}
.caviars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative; z-index: 2;
}
.caviar-mini {
  position: relative;
  border-radius: 32px;
  padding: 3rem 2.2rem 2.2rem;
  overflow: hidden;
  transition: all .5s cubic-bezier(.22,.61,.36,1);
  min-height: 460px;
  display: flex; flex-direction: column;
}
.caviar-mini-wrap {
  position: relative;
  padding-top: 18px;
  display: flex; flex-direction: column;
}
.caviar-mini-wrap .caviar-mini { flex: 1; }
.bestseller-tag {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  padding: .55rem 1.3rem;
  border-radius: 999px;
  font-family: var(--futura);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  z-index: 10;
  box-shadow: 0 8px 22px rgba(43,58,140,.28);
  white-space: nowrap;
  transition: transform .4s ease;
}
.caviar-mini-wrap:hover .bestseller-tag { transform: translateX(-50%) translateY(-3px); }
.caviar-mini:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 70px rgba(43,58,140,.25);
}
.caviar-mini.baeri { background: linear-gradient(145deg, var(--rose) 0%, var(--rose-dark) 100%); }
.caviar-mini.oscietre { background: linear-gradient(145deg, var(--yellow) 0%, var(--yellow-dark) 100%); }
.caviar-mini.beluga { background: linear-gradient(145deg, var(--teal) 0%, var(--teal-dark) 100%); color: #fff; }
.caviar-mini-eyebrow {
  position: relative; z-index: 2;
  font-family: var(--futura);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: .6;
  margin-bottom: .8rem;
  max-width: 58%;
}
.caviar-mini.beluga .caviar-mini-eyebrow { color: #fff; opacity: .8; }
.caviar-mini-name {
  position: relative; z-index: 2;
  font-family: var(--futura);
  font-weight: 800;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  line-height: .95;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
  max-width: 58%;
}
.caviar-mini.beluga .caviar-mini-name { color: #fff; }
.caviar-mini-desc {
  position: relative; z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  line-height: 1.45;
  color: var(--navy);
  opacity: .85;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  max-width: 58%;
}
.caviar-mini.beluga .caviar-mini-desc { color: #fff; opacity: .92; }
.caviar-mini-img {
  position: absolute;
  top: 50%; right: -30px;
  transform: translateY(-50%) rotate(-8deg);
  width: 44%;
  max-width: 230px;
  z-index: 0;
  transition: transform .55s ease;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.15));
}
.caviar-mini:hover .caviar-mini-img { transform: translateY(-50%) rotate(4deg) scale(1.12); }
.caviar-mini-foot {
  display: flex; align-items: center; justify-content: space-between;
  position: relative;
  z-index: 2;
  margin-top: auto;
}
.caviar-mini-price {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -.02em;
}
.caviar-mini.beluga .caviar-mini-price { color: #fff; }
.caviar-mini-price small {
  display: block;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .6;
  margin-top: .3rem;
}
.caviar-mini-arrow {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  transition: transform .3s;
}
.caviar-mini.beluga .caviar-mini-arrow { background: #fff; color: var(--teal); }
.caviar-mini:hover .caviar-mini-arrow { transform: rotate(-45deg) scale(1.1); }

/* ─── SECTION BIENFAITS ─── */
.benefits-sec {
  background: linear-gradient(180deg, var(--navy) 0%, #1c2670 50%, var(--navy) 100%);
  color: #fff;
  padding: 9rem 2rem;
  position: relative;
  overflow: hidden;
}
.bf-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
}
.bf-blob-a {
  top: -180px; right: -180px;
  width: 620px; height: 620px;
  background: var(--teal);
  opacity: .42;
  animation: bfFloat 16s ease-in-out infinite;
}
.bf-blob-b {
  bottom: -200px; left: -120px;
  width: 520px; height: 520px;
  background: var(--rose);
  opacity: .28;
  animation: bfFloat 20s ease-in-out infinite reverse;
}
.bf-blob-c {
  top: 40%; left: 50%;
  width: 300px; height: 300px;
  background: var(--yellow);
  opacity: .15;
  transform: translate(-50%, -50%);
  animation: bfPulse 9s ease-in-out infinite;
}
@keyframes bfFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(50px,40px) scale(1.12); }
}
@keyframes bfPulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity:.15; }
  50%     { transform: translate(-50%,-50%) scale(1.4); opacity:.25; }
}
.bf-grain {
  position:absolute; inset:0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,.04) 1px, transparent 1px),
                    radial-gradient(circle at 70% 80%, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px, 90px 90px;
  z-index:1; pointer-events:none;
}

.bf-head { text-align: center; max-width: 780px; margin: 0 auto 4.5rem; }
.bf-head .eyebrow { display:inline-flex; }
.bf-head .h-sec, .bf-head .lead { text-align:center; }

/* Stats banner */
.bf-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1080px;
  margin: 0 auto 5.5rem;
  padding: 2.4rem 1.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, rgba(61,191,184,.05) 100%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 32px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 70px rgba(0,0,0,.25);
}
.bf-stat { text-align:center; padding: .6rem 1rem; position:relative; }
.bf-stat + .bf-stat::before {
  content:''; position:absolute;
  left:0; top:18%; bottom:18%;
  width:1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.18), transparent);
}
.bf-stat-row { display:flex; align-items:flex-start; justify-content:center; gap:2px; }
.bf-stat-num {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 3.6rem;
  line-height: 1;
  color: var(--teal);
  letter-spacing: -.035em;
  background: linear-gradient(180deg, #5BD9D2 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bf-stat-suf {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--teal);
  margin-top: .55rem;
}
.bf-stat-pre {
  font-family: var(--futura);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--teal);
  opacity: .8;
  margin-top: .9rem;
  margin-right: 2px;
}
.bf-stat-hero .bf-stat-num {
  background: linear-gradient(180deg, #FFE89A 0%, var(--yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.bf-stat-hero .bf-stat-suf,
.bf-stat-hero .bf-stat-pre { color: var(--yellow); }
.bf-stat-hero .bf-stat-lbl { color: #fff; }
.bf-stat-lbl {
  font-size: .72rem;
  color: rgba(255,255,255,.78);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: .9rem;
  font-weight: 600;
}

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 1.4rem;
  max-width: 1320px;
  margin: 0 auto;
  position: relative; z-index: 2;
}
.bc {
  position: relative;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 2.2rem 1.6rem 2rem;
  border-radius: 28px;
  transition: all .5s cubic-bezier(.22,.61,.36,1);
  overflow: hidden;
}
.bc::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at top right, rgba(61,191,184,.25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .55s ease;
  pointer-events:none;
}
.bc::after {
  content:''; position:absolute;
  inset:0; border-radius:28px;
  padding:1px;
  background: linear-gradient(135deg, var(--teal), transparent 50%, var(--rose));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity:0; transition:opacity .5s;
  pointer-events:none;
}
.bc:hover {
  transform: translateY(-12px);
  background: rgba(255,255,255,.08);
  box-shadow: 0 28px 55px rgba(0,0,0,.35);
}
.bc:hover::before { opacity: 1; }
.bc:hover::after { opacity: 1; }

.bc-num {
  position: absolute;
  top: 1.4rem; right: 1.5rem;
  font-family: var(--futura);
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  letter-spacing: .12em;
  z-index: 2;
}
.bc-icon {
  width: 58px; height: 58px;
  background: rgba(61,191,184,.16);
  border: 1px solid rgba(61,191,184,.3);
  border-radius: 18px;
  display: grid; place-items: center;
  margin-bottom: 1.4rem;
  position: relative; z-index: 2;
  transition: all .5s cubic-bezier(.22,.61,.36,1);
  color: var(--teal);
}
.bc-icon svg { width: 30px; height: 30px; transition: transform .5s ease; }
.bc:hover .bc-icon {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy);
  transform: rotate(-8deg) scale(1.1);
  box-shadow: 0 12px 25px rgba(61,191,184,.35);
}
.bc:hover .bc-icon svg { transform: scale(1.05); }

.bc-t {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: .7rem;
  position: relative; z-index: 2;
}
.bc-d {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  position: relative; z-index: 2;
}
.bc-pill {
  display: inline-block;
  font-family: var(--futura);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .5rem .9rem;
  border-radius: 999px;
  background: rgba(61,191,184,.18);
  color: var(--teal);
  position: relative; z-index: 2;
  transition: all .4s ease;
}
.bc:hover .bc-pill {
  background: var(--teal);
  color: var(--navy);
  transform: translateY(-2px);
}

/* Featured protein card */
.bc-featured {
  background: linear-gradient(160deg, rgba(242,223,110,.18) 0%, rgba(255,255,255,.05) 60%);
  border-color: rgba(242,223,110,.4);
  overflow: visible;
}
.bc-featured::after {
  background: linear-gradient(135deg, var(--yellow), transparent 40%, var(--teal));
  opacity: .6;
}
.bc-featured:hover {
  background: linear-gradient(160deg, rgba(242,223,110,.28) 0%, rgba(255,255,255,.08) 60%);
  border-color: var(--yellow);
  box-shadow: 0 28px 55px rgba(242,223,110,.18);
}
.bc-featured .bc-icon {
  background: rgba(242,223,110,.18);
  border-color: rgba(242,223,110,.4);
  color: var(--yellow);
}
.bc-featured:hover .bc-icon {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--navy);
  box-shadow: 0 12px 25px rgba(242,223,110,.4);
}
.bc-featured .bc-pill {
  background: rgba(242,223,110,.2);
  color: var(--yellow);
}
.bc-featured:hover .bc-pill {
  background: var(--yellow);
  color: var(--navy);
}
.bc-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--futura);
  font-weight: 800;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .45rem .9rem;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 5;
  box-shadow: 0 8px 18px rgba(242,223,110,.35);
}
.bc-bignum {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: .4rem 0 1rem;
  position: relative; z-index: 2;
}
.bc-bignum-pre {
  font-family: var(--futura);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: .15rem;
}
.bc-bignum-val {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--yellow);
  background: linear-gradient(180deg, #FFE89A 0%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bc-bignum-val small {
  font-size: 1.3rem;
  margin-left: 2px;
  -webkit-text-fill-color: var(--yellow);
}
.bc-bignum-suf {
  font-family: var(--futura);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-top: .3rem;
}

/* Bottom quote */
.bf-bottom {
  margin: 5rem auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  padding: 2.6rem 3rem;
  background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, rgba(247,197,197,.06) 100%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 32px;
  backdrop-filter: blur(14px);
  position: relative; z-index: 2;
}
.bf-bottom-left { display:flex; align-items:flex-start; gap:1rem; }
.bf-quote-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4.5rem;
  color: var(--teal);
  line-height: .6;
  margin-top: .4rem;
  opacity: .85;
  flex-shrink: 0;
}
.bf-bottom-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: rgba(255,255,255,.92);
  margin: 0;
}
.btn-teal {
  background: var(--teal);
  color: var(--navy);
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-family: var(--futura);
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  transition: all .4s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn-teal:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(61,191,184,.4);
}
.btn-teal .arr { transition: transform .35s; }
.btn-teal:hover .arr { transform: translateX(4px); }

/* ─── SECTION AUTOUR ─── */
.autour-sec {
  padding: 8rem 2rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.autour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1240px;
  margin: 3rem auto 0;
}
.auto-card {
  position: relative;
  border-radius: 26px;
  padding: 2.5rem 2rem;
  transition: all .4s;
  overflow: hidden;
  min-height: 320px;
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.auto-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
}
.auto-card.rose { background: var(--rose-light); }
.auto-card.teal { background: var(--teal-light); }
.auto-card.yellow { background: var(--yellow-light); }
.auto-card-img {
  position: absolute;
  right: -10px; top: 10px;
  width: 150px; height: 150px;
  object-fit: contain;
  transition: transform .5s ease;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.1));
}
.auto-card:hover .auto-card-img { transform: rotate(10deg) scale(1.1); }
.auto-card-name {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: .5rem;
  max-width: 65%;
  line-height: 1.05;
  position: relative;
  z-index: 2;
}
.auto-card-desc {
  font-size: .85rem;
  color: rgba(43,58,140,.65);
  line-height: 1.55;
  max-width: 80%;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.auto-card-price {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--navy);
  line-height: 1;
  position: relative; z-index: 2;
}
.auto-card-price small {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .55;
  display: block; margin-top: .2rem;
}

/* ─── SECTION ABOS ─── */
.abo-sec {
  padding: 8rem 2rem;
  background: var(--teal);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.abo-sec::before {
  content: ''; position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: var(--rose);
  border-radius: 50%;
  filter: blur(160px);
  opacity: .4;
}
.abo-content {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
  position: relative; z-index: 2;
}
.abo-visual {
  position: relative;
  aspect-ratio: 1/1;
  max-height: 500px;
  border-radius: 40px;
  background: url('../BANQUE IMAGES LCDC/ABONNEMENT CAVIAR.png') center/cover no-repeat, var(--navy);
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
  overflow: hidden;
}
.abo-visual::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(43,58,140,.15) 0%, transparent 60%);
}
.abo-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--yellow);
  color: var(--navy);
  padding: 1rem 1.4rem;
  border-radius: 20px;
  font-family: var(--futura);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  transform: rotate(-6deg);
}

/* ─── SECTION ESTURGEON ─── */
.sturgeon-sec {
  padding: 10rem 2rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.sturgeon-sec .blob-a { top: 5%; left: -10%; width: 500px; height: 500px; background: var(--teal); opacity: .15; }
.sturgeon-wrap {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
  position: relative; z-index: 2;
}
.sturgeon-img {
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--sh-lg);
  background: url('../wetransfer_photos-produits_2025-08-01_1326/BELUGA(6).jpeg') center/cover no-repeat;
}

/* ─── QUOTE (Coluche) ─── */
.coluche-sec {
  padding: 8rem 2rem;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.coluche-sec::before {
  content: '"';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 30rem;
  line-height: 1;
  color: rgba(61,191,184,.08);
  pointer-events: none;
  font-style: italic;
}
.coluche-sec .q {
  position: relative; z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.3;
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  color: var(--teal);
}
.coluche-sec .a {
  position: relative; z-index: 2;
  margin-top: 2rem;
  font-family: var(--futura);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* ─── HELPER / UTIL ─── */
@media(max-width:1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 4rem; }
  .hero-right { max-height: 450px; }
  .caviars-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .bf-stats { grid-template-columns: repeat(2,1fr); gap: 1rem; padding: 1.6rem 1rem; }
  .bf-stat + .bf-stat::before { display:none; }
  .bf-stat-num { font-size: 2.6rem; }
  .bf-bottom { grid-template-columns: 1fr; padding: 2rem; text-align:center; }
  .bf-bottom-left { flex-direction:column; align-items:center; gap:.5rem; }
  .autour-grid { grid-template-columns: 1fr; }
  .abo-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .sturgeon-wrap { grid-template-columns: 1fr; gap: 3rem; }
}
@media(max-width:600px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .hs-num { font-size: 1.8rem; }
  .hero { padding-top: calc(var(--banner-h) + var(--nav-h) + 1rem); }
  .benefits-sec { padding: 6rem 1.2rem; }
  .bf-bottom-quote { font-size: 1.15rem; }
  .bf-quote-mark { font-size: 3.5rem; }
}

/* ═══════════════════════════════════════════
   ESTURGEON PAGE STYLES (page.esturgeon.liquid)
═══════════════════════════════════════════ */
<style>
/* ═══ HERO ═══ */
.est-hero {
  padding: calc(var(--banner-h) + var(--nav-h) + 5rem) 2rem 7rem;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--teal-xdark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.est-hero .blob-a { top: -12%; left: -6%; width: 440px; height: 440px; background: var(--teal); opacity: .28; }
.est-hero .blob-b { bottom: -25%; right: -8%; width: 520px; height: 520px; background: var(--rose); opacity: .22; }
.est-hero .blob-c { top: 25%; right: 12%; width: 280px; height: 280px; background: var(--yellow); opacity: .2; }
.est-hero-inner { max-width: 960px; margin: 0 auto; position: relative; z-index: 2; }
.est-hero .eyebrow { color: var(--teal-light); justify-content: center; }
.est-hero h1 {
  font-family: var(--futura);
  font-weight: 800;
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: .88;
  letter-spacing: -.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.est-hero h1 .it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--yellow);
}
.est-hero .lead { color: rgba(255,255,255,.82); max-width: 700px; margin: 0 auto 2.5rem; }

.est-hero-pills {
  display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap;
  margin-top: 2rem;
}
.est-pill {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50px;
  padding: .6rem 1.3rem;
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .02em;
}

/* ═══ INTRO : LE POISSON FOSSILE ═══ */
.est-intro {
  padding: 7rem 2rem;
  background: #fff;
  position: relative;
}
.est-intro-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.est-intro-text h2 { margin-bottom: 1.5rem; }
.est-intro-text p {
  font-size: 1.05rem;
  color: rgba(43,58,140,.78);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.est-intro-text p .hl {
  background: linear-gradient(transparent 60%, var(--yellow-light) 60%);
  padding: 0 .2em;
  font-weight: 600;
  color: var(--navy);
}
.est-intro-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--rose-xlight) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.est-intro-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, var(--teal-soft) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, var(--rose) 0%, transparent 45%);
  opacity: .45;
}
.est-fish-big {
  width: 85%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(43,58,140,.25));
  position: relative;
  z-index: 2;
  animation: fish-swim 8s ease-in-out infinite;
}
@keyframes fish-swim {
  0%,100% { transform: translateX(0) rotate(0deg); }
  50% { transform: translateX(14px) rotate(-2deg); }
}
.est-intro-badge {
  position: absolute;
  bottom: 2rem; left: 2rem;
  background: #fff;
  padding: 1rem 1.3rem;
  border-radius: 16px;
  box-shadow: var(--sh-md);
  z-index: 3;
}
.est-intro-badge .big-num {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 2rem;
  color: var(--teal);
  letter-spacing: -.02em;
  line-height: 1;
}
.est-intro-badge .big-lbl {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(43,58,140,.6);
  margin-top: .4rem;
  font-weight: 600;
}

/* ═══ TIMELINE ═══ */
.est-timeline {
  padding: 7rem 2rem;
  background: linear-gradient(180deg, var(--rose-xlight) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.est-timeline .blob-a { top: 5%; left: -5%; width: 320px; height: 320px; background: var(--teal); opacity: .12; }
.est-timeline-head { max-width: 780px; margin: 0 auto 5rem; text-align: center; position: relative; z-index: 2; }
.timeline-wrap {
  max-width: 1100px; margin: 0 auto;
  position: relative;
  z-index: 2;
}
.timeline-line {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--teal) 0%, var(--rose) 50%, var(--yellow) 100%);
  transform: translateX(-50%);
}
.tl-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: center;
}
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--teal);
  margin: 0 auto;
  box-shadow: 0 0 0 6px rgba(61,191,184,.15);
}
.tl-item:nth-child(2) .tl-dot { border-color: var(--rose-dark); box-shadow: 0 0 0 6px rgba(240,160,160,.2); }
.tl-item:nth-child(3) .tl-dot { border-color: var(--yellow-dark); box-shadow: 0 0 0 6px rgba(232,205,58,.2); }
.tl-item:nth-child(4) .tl-dot { border-color: var(--navy); box-shadow: 0 0 0 6px rgba(43,58,140,.15); }
.tl-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--sh-sm);
  transition: all .3s;
  position: relative;
}
.tl-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.tl-item.left .tl-card { grid-column: 1; text-align: right; }
.tl-item.right .tl-card { grid-column: 3; }
.tl-year {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: .3rem;
}
.tl-card h3 {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: -.01em;
  margin-bottom: .8rem;
}
.tl-card p { color: rgba(43,58,140,.72); line-height: 1.65; font-size: .95rem; }

/* ═══ ESPÈCES ═══ */
.est-species {
  padding: 7rem 2rem;
  background: #fff;
}
.species-head { max-width: 780px; margin: 0 auto 4rem; text-align: center; }
.species-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.species-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: all .4s;
  border: 2px solid transparent;
}
.species-card:hover { transform: translateY(-10px); box-shadow: var(--sh-lg); }
.species-card.rose:hover { border-color: var(--rose); }
.species-card.teal:hover { border-color: var(--teal); }
.species-card.yellow:hover { border-color: var(--yellow); }
.species-visual {
  aspect-ratio: 4/3;
  background: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.species-visual img {
  width: 115%; height: 115%;
  object-fit: cover;
  object-position: center 42%;
}
.species-card.rose .species-visual { background: linear-gradient(135deg, var(--rose-light) 0%, var(--rose) 100%); }
.species-card.teal .species-visual { background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 100%); }
.species-card.yellow .species-visual { background: linear-gradient(135deg, var(--yellow-light) 0%, var(--yellow) 100%); }
.species-body { padding: 2rem; }
.species-body h3 {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: -.015em;
  margin-bottom: .3rem;
}
.species-latin {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(43,58,140,.55);
  font-size: .95rem;
  margin-bottom: 1.2rem;
}
.species-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin-bottom: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(43,58,140,.08);
}
.sp-fact-lbl {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(43,58,140,.55);
  font-weight: 600;
}
.sp-fact-val {
  font-family: var(--futura);
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  margin-top: .2rem;
}
.species-body p { color: rgba(43,58,140,.72); line-height: 1.6; font-size: .93rem; }

/* ═══ LIFE CYCLE ═══ */
.est-life {
  padding: 7rem 2rem;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.est-life .blob-a { top: -10%; right: -8%; width: 400px; height: 400px; background: var(--teal); opacity: .22; }
.est-life .blob-b { bottom: -15%; left: -5%; width: 340px; height: 340px; background: var(--rose); opacity: .18; }
.life-inner { max-width: 1180px; margin: 0 auto; position: relative; z-index: 2; }
.life-head { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.life-head h2 { color: #fff; }
.life-head h2 .italic { color: var(--yellow); }
.life-head .lead { color: rgba(255,255,255,.75); }

.life-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.life-step {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all .35s;
  position: relative;
}
.life-step:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); border-color: var(--teal); }
.life-step-num {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}
.life-step h3 {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .7rem;
  letter-spacing: -.01em;
}
.life-step p { color: rgba(255,255,255,.72); line-height: 1.6; font-size: .9rem; }

/* ═══ ENGAGEMENT ═══ */
.est-engage {
  padding: 7rem 2rem;
  background: linear-gradient(180deg, var(--teal-light) 0%, #fff 100%);
}
.engage-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.engage-text .eyebrow { color: var(--teal-xdark); }
.engage-text .eyebrow::before { background: var(--teal-xdark); }
.engage-text h2 { margin-bottom: 2rem; }
.engage-list { display: flex; flex-direction: column; gap: 1.5rem; }
.engage-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.2rem;
  align-items: start;
}
.engage-ic {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--sh-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.engage-item h4 {
  font-family: var(--futura);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: .3rem;
  letter-spacing: -.01em;
}
.engage-item p { color: rgba(43,58,140,.72); line-height: 1.6; font-size: .92rem; }
.engage-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; justify-content: center;
}
.engage-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(247,197,197,.35) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(242,223,110,.3) 0%, transparent 45%);
}
.engage-icon-big {
  width: 85%;
  max-width: 460px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.4)) brightness(1.08);
}
.engage-stat {
  position: absolute;
  bottom: 2rem; right: 2rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  z-index: 3;
}
.engage-stat .num {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--teal-xdark);
  line-height: 1;
  letter-spacing: -.02em;
}
.engage-stat .lbl {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(43,58,140,.6);
  margin-top: .4rem;
  font-weight: 600;
}

/* ═══ FUN FACTS ═══ */
.est-facts {
  padding: 7rem 2rem;
  background: #FEFBE8;
}
.facts-head { max-width: 780px; margin: 0 auto 4rem; text-align: center; }
.facts-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.fact-tile {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--sh-sm);
  transition: all .35s;
  border: 2px solid transparent;
}
.fact-tile:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.fact-tile.teal:hover { border-color: var(--teal); }
.fact-tile.rose:hover { border-color: var(--rose); }
.fact-tile.yellow:hover { border-color: var(--yellow); }
.fact-num {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 1rem;
}
.fact-tile.teal .fact-num { color: var(--teal); }
.fact-tile.rose .fact-num { color: var(--rose-dark); }
.fact-tile.yellow .fact-num { color: var(--yellow-dark); }
.fact-tile h3 {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .6rem;
  letter-spacing: -.01em;
}
.fact-tile p { color: rgba(43,58,140,.72); line-height: 1.6; font-size: .93rem; }

/* ═══ CTA FINAL ═══ */
.est-cta {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.est-cta .blob-a { top: -20%; left: 10%; width: 340px; height: 340px; background: var(--rose); opacity: .28; }
.est-cta .blob-b { bottom: -20%; right: 10%; width: 380px; height: 380px; background: var(--yellow); opacity: .2; }
.est-cta-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.est-cta h2 { color: #fff; }
.est-cta h2 .italic { color: var(--yellow); }
.est-cta p { color: rgba(255,255,255,.82); font-size: 1.1rem; margin: 1rem 0 2.5rem; }

@media(max-width:900px) {
  .est-intro-inner, .engage-inner { grid-template-columns: 1fr; gap: 3rem; }
  .species-grid { grid-template-columns: 1fr; }
  .life-steps { grid-template-columns: 1fr 1fr; }
  .facts-grid { grid-template-columns: 1fr; }
  .timeline-line { left: 20px; }
  .tl-item { grid-template-columns: 40px 1fr; gap: 1rem; }
  .tl-item.left .tl-card, .tl-item.right .tl-card { grid-column: 2; text-align: left; }
  .tl-dot { grid-column: 1; }
}
</style>
</head>

/* ═══════════════════════════════════════════════════════════════
   LOGO FALLBACK (quand pas de logo image uploadé)
═══════════════════════════════════════════════════════════════ */
.nav-logo-text-only {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: var(--rose);
  color: var(--navy);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(43,58,140,.25);
  overflow: hidden;
}
.nav-logo-fallback {
  font-family: var(--futura);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: .04em;
  color: var(--navy);
}
@media (max-width: 900px) {
  .nav-logo-fallback { font-size: 1.1rem; }
}
@media (max-width: 600px) {
  .nav-logo-fallback { font-size: .95rem; }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE À PROPOS (depuis apropos.html embedded styles)
═══════════════════════════════════════════════════════════════ */
/* HERO */
.ap-hero {
  padding: calc(var(--banner-h) + var(--nav-h) + 5rem) 2rem 6rem;
  background: linear-gradient(135deg, var(--rose) 0%, var(--yellow) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.ap-hero .blob-a { top: -15%; left: -5%; width: 440px; height: 440px; background: var(--teal); opacity: .28; }
.ap-hero .blob-b { bottom: -20%; right: -10%; width: 500px; height: 500px; background: var(--navy); opacity: .18; }
.ap-hero .blob-c { top: 25%; right: 15%; width: 280px; height: 280px; background: #fff; opacity: .3; }
.ap-hero-inner { max-width: 920px; margin: 0 auto; position: relative; z-index: 2; }
.ap-hero .eyebrow { color: var(--navy); justify-content: center; }
.ap-hero .eyebrow::before { background: var(--navy); }
.ap-hero h1 {
  font-family: var(--futura);
  font-weight: 800;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: .88;
  letter-spacing: -.035em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.ap-hero h1 .it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--teal-xdark);
}
.ap-hero p { font-size: 1.15rem; color: rgba(43,58,140,.78); max-width: 680px; margin: 0 auto; line-height: 1.65; }

/* MANIFESTO */
.manifesto {
  padding: 7rem 2rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.manifesto-inner {
  max-width: 860px; margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.manifesto-mark {
  font-family: var(--serif);
  font-size: 8rem;
  color: var(--teal);
  line-height: .3;
  margin-bottom: 2rem;
  opacity: .5;
}
.manifesto-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 2.5rem;
}
.manifesto-text .hl {
  background: linear-gradient(transparent 60%, var(--yellow-light) 60%);
  padding: 0 .15em;
}
.manifesto-sign {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.manifesto-sign .sign-name {
  font-family: var(--futura);
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}
.manifesto-sign .sign-role {
  font-size: .85rem;
  color: rgba(43,58,140,.6);
}

/* STORY */
.story-section {
  padding: 7rem 2rem;
  background: linear-gradient(180deg, var(--teal-light) 0%, #fff 100%);
  position: relative;
}
.story-head { max-width: 780px; margin: 0 auto 4rem; text-align: center; }
.story-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.story-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--sh-sm);
  transition: all .35s;
  border-top: 6px solid transparent;
}
.story-card.teal { border-top-color: var(--teal); }
.story-card.rose { border-top-color: var(--rose); }
.story-card.yellow { border-top-color: var(--yellow); }
.story-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.story-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 3rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 1rem;
}
.story-card.rose .story-num { color: var(--rose-dark); }
.story-card.yellow .story-num { color: var(--yellow-dark); }
.story-card h3 {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: -.01em;
  margin-bottom: .8rem;
}
.story-card p { color: rgba(43,58,140,.72); line-height: 1.65; font-size: .95rem; }

/* VALUES */
.values-section {
  padding: 7rem 2rem;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.values-section .blob-a { top: -10%; left: -5%; width: 400px; height: 400px; background: var(--teal); opacity: .22; }
.values-section .blob-b { bottom: -20%; right: -8%; width: 380px; height: 380px; background: var(--rose); opacity: .18; }
.values-inner { max-width: 1180px; margin: 0 auto; position: relative; z-index: 2; }
.values-head { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.values-head h2 { color: #fff; }
.values-head h2 .italic { color: var(--yellow); }
.values-head .lead { color: rgba(255,255,255,.75); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-item {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all .35s;
}
.value-item:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); border-color: var(--teal); }
.value-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.value-item:nth-child(2) .value-icon { background: var(--rose); }
.value-item:nth-child(3) .value-icon { background: var(--yellow); color: var(--navy); }
.value-item:nth-child(4) .value-icon { background: #fff; color: var(--navy); }
.value-item h3 {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .7rem;
  letter-spacing: -.01em;
}
.value-item p { color: rgba(255,255,255,.72); line-height: 1.6; font-size: .9rem; }

/* TEAM */
.team-section {
  padding: 7rem 2rem;
  background: #FEFBE8;
}
.team-head { max-width: 780px; margin: 0 auto 4rem; text-align: center; }
.team-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: all .35s;
  text-align: center;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.team-portrait {
  aspect-ratio: 4/4;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--rose-xlight) 100%);
  position: relative;
}
.team-card:nth-child(2) .team-portrait { background: linear-gradient(135deg, var(--rose-light) 0%, var(--yellow-light) 100%); }
.team-card:nth-child(3) .team-portrait { background: linear-gradient(135deg, var(--yellow-light) 0%, var(--teal-light) 100%); }
.team-body { padding: 1.8rem 1.5rem; }
.team-name {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: -.01em;
  margin-bottom: .3rem;
}
.team-role {
  font-family: var(--serif);
  font-style: italic;
  color: var(--teal);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.team-bio { color: rgba(43,58,140,.72); line-height: 1.6; font-size: .9rem; }

/* NUMBERS */
.numbers-section {
  padding: 6rem 2rem;
  background: #fff;
  border-top: 1px solid rgba(43,58,140,.06);
  border-bottom: 1px solid rgba(43,58,140,.06);
}
.numbers-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.num-item { position: relative; }
.num-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem; top: 20%;
  width: 1px; height: 60%;
  background: rgba(43,58,140,.08);
}
.num-big {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--teal);
  letter-spacing: -.03em;
  line-height: 1;
}
.num-lbl {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(43,58,140,.6);
  margin-top: .5rem;
  font-weight: 600;
}

/* CTA */
.ap-cta {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ap-cta .blob-a { top: -20%; left: 10%; width: 340px; height: 340px; background: var(--rose); opacity: .28; }
.ap-cta .blob-b { bottom: -20%; right: 10%; width: 380px; height: 380px; background: var(--yellow); opacity: .2; }
.ap-cta-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.ap-cta h2 { color: #fff; }
.ap-cta h2 .italic { color: var(--yellow); }
.ap-cta p { color: rgba(255,255,255,.82); font-size: 1.1rem; margin: 1rem 0 2.5rem; }

@media(max-width:900px) {
  .story-grid, .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .num-item:nth-child(2)::after { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   FIX NAV — fond visible sur TOUTES les pages
   (avant : nav transparent → texte invisible sur pages claires)
═══════════════════════════════════════════════════════════════ */
/* Par défaut : nav navy semi-transparent + blur sur TOUTES les pages */
#nav {
  background: linear-gradient(180deg, rgba(43,58,140,.92) 0%, rgba(43,58,140,.78) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 14px rgba(0,0,0,.08);
}
/* Sur la home, le hero a son propre gradient riche — on rend nav transparent
   en haut puis solide au scroll (le .stuck rule reste comme avant) */
body.template-index #nav:not(.stuck) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
/* Sur les autres pages, le nav reste solide même en haut (visible) */

/* Padding-top pour que le hero des pages ne passe pas SOUS le nav */
.est-hero, .ap-hero, .lg-hero, .contact-hero {
  padding-top: calc(var(--banner-h) + var(--nav-h) + 4rem) !important;
}

/* ═══════════════════════════════════════════════════════════════
   FIX MOBILE MENU OVERLAY
   (avant : menu vide au tap. Maintenant : tous les liens dans
    un overlay propre full-screen)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Cache tous les nav-links par défaut sur mobile */
  #nav > .nav-links,
  #nav .nav-right .nav-links {
    display: none;
  }

  /* Quand menu ouvert : overlay plein écran avec tous les liens */
  body.menu-open::after {
    content: '';
    position: fixed;
    top: calc(var(--banner-h) + var(--nav-h));
    left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 7000;
  }
  body.menu-open #nav > .nav-links,
  body.menu-open #nav .nav-right .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    left: 0; right: 0;
    z-index: 7100;
    padding: 0 2rem;
    gap: 1.5rem;
    align-items: center;
  }
  /* Menu de gauche en haut de l'overlay */
  body.menu-open #nav > .nav-links {
    top: calc(var(--banner-h) + var(--nav-h) + 2.5rem);
  }
  /* Menu de droite en dessous */
  body.menu-open #nav .nav-right .nav-links {
    top: calc(var(--banner-h) + var(--nav-h) + 16rem);
  }
  /* Liens du menu mobile : gros, blancs, visibles */
  body.menu-open #nav .nav-links a {
    font-family: var(--futura);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    padding: .6rem 0;
    transition: color .3s, transform .3s;
  }
  body.menu-open #nav .nav-links a:hover,
  body.menu-open #nav .nav-links a:active {
    color: var(--teal);
    transform: scale(1.05);
  }

  /* Hamburger qui se transforme en X quand menu ouvert */
  body.menu-open .burger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  body.menu-open .burger span:nth-child(2) {
    opacity: 0;
  }
  body.menu-open .burger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* Le nav reste navy SOLIDE quand menu ouvert (pas transparent) */
  body.menu-open #nav {
    background: var(--navy) !important;
    backdrop-filter: blur(20px);
  }

  /* Padding-top renforcé pour pages sur mobile */
  .est-hero, .ap-hero, .lg-hero, .contact-hero {
    padding-top: calc(var(--banner-h) + var(--nav-h) + 2rem) !important;
  }
}

/* Petit logo mobile pour ne pas wrap le texte */
@media (max-width: 900px) {
  .nav-logo {
    height: 60px !important;
    width: 60px !important;
  }
  #nav.stuck .nav-logo {
    height: 50px !important;
    width: 50px !important;
  }
  /* Si le logo est texte (pas d'image uploadée), forcer compact */
  .nav-logo-fallback {
    font-size: .8rem !important;
    line-height: 1 !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE ABONNEMENTS
═══════════════════════════════════════════════════════════════ */
/* HERO */
.abo-hero {
  padding: calc(var(--banner-h) + var(--nav-h) + 5rem) 2rem 6rem;
  background: linear-gradient(135deg, var(--navy) 0%, #1F2A6B 60%, var(--teal-xdark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.abo-hero .blob-a { top: -10%; left: -5%; width: 420px; height: 420px; background: var(--teal); opacity: .28; }
.abo-hero .blob-b { bottom: -20%; right: -10%; width: 500px; height: 500px; background: var(--rose); opacity: .22; }
.abo-hero .blob-c { top: 30%; right: 15%; width: 260px; height: 260px; background: var(--yellow); opacity: .18; }
.abo-hero-inner { max-width: 920px; margin: 0 auto; position: relative; z-index: 2; }
.abo-hero .eyebrow { color: var(--teal-light); }
.abo-hero h1 {
  font-family: var(--futura);
  font-weight: 800;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: .88;
  letter-spacing: -.035em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.abo-hero h1 .it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--yellow);
}
.abo-hero p { font-size: 1.15rem; color: rgba(255,255,255,.82); max-width: 680px; margin: 0 auto 2rem; line-height: 1.65; }
.abo-pills { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.abo-pill {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50px;
  padding: .6rem 1.3rem;
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .02em;
}

/* BIG NUMBERS */
.abo-stats {
  background: #fff;
  padding: 4rem 2rem;
  border-bottom: 1px solid rgba(43,58,140,.06);
}
.stats-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem; top: 20%;
  width: 1px; height: 60%;
  background: rgba(43,58,140,.08);
}
.stat-num {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--teal);
  letter-spacing: -.03em;
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(43,58,140,.6);
  margin-top: .5rem;
  font-weight: 600;
}

/* FORMULES */
.abo-formules {
  padding: 6rem 2rem 7rem;
  background: linear-gradient(180deg, var(--rose-xlight) 0%, #fff 100%);
  position: relative;
}
.abo-formules .blob-a { top: 10%; right: -5%; width: 320px; height: 320px; background: var(--yellow); opacity: .22; }
.formules-head { max-width: 780px; margin: 0 auto 4rem; text-align: center; position: relative; z-index: 2; }
.formules-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
  position: relative;
  z-index: 2;
}
.sub-card.rose { border-top: 6px solid var(--rose); }
.sub-card.yellow { border-top: 6px solid var(--yellow); }
.sub-card.featured { border-top: 6px solid var(--teal); }

.sub-btn {
  width: 100%;
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 1.1rem;
  border-radius: 50px;
  font-family: var(--futura);
  font-weight: 800;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  transition: all .3s;
}
.sub-btn:hover { background: var(--teal-xdark); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(61,191,184,.35); }
.sub-card.featured .sub-btn { background: var(--yellow); color: var(--navy); }
.sub-card.featured .sub-btn:hover { background: #FFE94F; box-shadow: 0 10px 25px rgba(242,223,110,.45); }

/* HOW IT WORKS */
.how-section {
  padding: 6rem 2rem;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.how-section .blob-a { top: -10%; left: -8%; width: 400px; height: 400px; background: var(--teal); opacity: .22; }
.how-section .blob-b { bottom: -20%; right: -5%; width: 350px; height: 350px; background: var(--rose); opacity: .2; }
.how-inner { max-width: 1180px; margin: 0 auto; position: relative; z-index: 2; }
.how-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.how-head h2 { color: #fff; }
.how-head h2 .it { color: var(--yellow); }
.how-head p { color: rgba(255,255,255,.75); }
.how-section .step { background: rgba(255,255,255,.06); backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,.1); color: #fff; }
.how-section .step::before { color: var(--teal); }
.how-section .step-title { color: #fff; }
.how-section .step-desc { color: rgba(255,255,255,.75); }

/* BENEFITS */
.benefits-section {
  padding: 6rem 2rem;
  background: #FEFBE8;
}
.benefits-section .how-head h2 { color: var(--navy); }
.benefits-section .how-head h2 .it { color: var(--teal); }
.benefits-section .how-head p { color: rgba(43,58,140,.7); }
.benefits-section .how-head .eyebrow { color: var(--teal-xdark); }
.benefits-section .how-head .eyebrow span { background: var(--teal); }
.benefits-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.benefit-tile {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: var(--sh-sm);
  transition: all .35s;
  border: 2px solid transparent;
}
.benefit-tile:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: var(--teal-light); }
.benefit-icon {
  width: 64px; height: 64px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}
.benefit-tile:nth-child(1) .benefit-icon { background: var(--teal-light); color: var(--teal-xdark); }
.benefit-tile:nth-child(2) .benefit-icon { background: var(--rose-light); color: #C45B5B; }
.benefit-tile:nth-child(3) .benefit-icon { background: var(--yellow-light); color: #8B7310; }
.benefit-tile:nth-child(4) .benefit-icon { background: var(--teal-light); color: var(--teal-xdark); }
.benefit-tile:nth-child(5) .benefit-icon { background: var(--rose-light); color: #C45B5B; }
.benefit-tile:nth-child(6) .benefit-icon { background: var(--yellow-light); color: #8B7310; }
.benefit-tile h3 {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .6rem;
  letter-spacing: -.01em;
}
.benefit-tile p { color: rgba(43,58,140,.7); line-height: 1.6; font-size: .92rem; }

/* TESTIMONIALS */
.testis-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #fff 0%, var(--teal-light) 100%);
}
.testis-grid {
  max-width: 1180px; margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testi-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: var(--sh-sm);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 0.3rem; left: 1.3rem;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--teal);
  line-height: 1;
}
.testi-stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: .7rem; position: relative; z-index: 2; }
.testi-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  position: relative; z-index: 2;
}
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-ava {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--futura);
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
}
.testi-name { font-family: var(--futura); font-weight: 700; color: var(--navy); font-size: .95rem; }
.testi-role { font-size: .78rem; color: rgba(43,58,140,.55); }

/* FAQ */
.faq-section {
  padding: 6rem 2rem;
  background: #fff;
}
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-inner h2 { text-align: center; margin-bottom: 3rem; }
.accordion-item {
  background: #F7F7FA;
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all .3s;
}
.accordion-item.open { background: #fff; box-shadow: var(--sh-md); }
.accordion-q {
  padding: 1.4rem 1.8rem;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--futura);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}
.accordion-q::after {
  content: '+';
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--teal);
  transition: transform .3s;
  line-height: 1;
}
.accordion-item.open .accordion-q::after { transform: rotate(45deg); }
.accordion-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  padding: 0 1.8rem;
  color: rgba(43,58,140,.72);
  line-height: 1.7;
  font-size: .95rem;
}
.accordion-item.open .accordion-a { max-height: 400px; padding: 0 1.8rem 1.6rem; }

/* CTA FINAL */
.abo-cta {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--rose) 0%, var(--yellow) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.abo-cta .blob-a { top: -20%; left: 10%; width: 340px; height: 340px; background: var(--teal); opacity: .28; }
.abo-cta .blob-b { bottom: -20%; right: 10%; width: 380px; height: 380px; background: var(--navy); opacity: .15; }
.abo-cta-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.abo-cta h2 { color: var(--navy); }
.abo-cta p { color: rgba(43,58,140,.75); font-size: 1.1rem; margin: 1rem 0 2rem; }

@media(max-width:900px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .formules-grid { grid-template-columns: 1fr; }
  .sub-card.featured { transform: none; }
  .benefits-grid, .testis-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE LE CAVIAR (depuis le-caviar.html embedded styles)
═══════════════════════════════════════════════════════════════ */
/* ═══ CAVIAR PAGE ═══ */

.caviar-hero {
  padding: calc(var(--banner-h) + var(--nav-h) + 4rem) 2rem 5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.caviar-hero .blob-a { top: 10%; right: -5%; width: 400px; height: 400px; background: var(--teal); opacity: .3; }
.caviar-hero .blob-b { bottom: -10%; left: 5%; width: 350px; height: 350px; background: var(--rose); opacity: .2; }
.caviar-hero-inner {
  max-width: 900px; margin: 0 auto;
  position: relative; z-index: 2;
}
.caviar-hero h1 {
  font-family: var(--futura);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: .9;
  letter-spacing: -.035em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
}
.caviar-hero h1 .it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--teal);
}
.caviar-hero p { font-size: 1.15rem; color: rgba(255,255,255,.75); max-width: 680px; margin: 0 auto 2.5rem; line-height: 1.65; }

.caviar-quick-nav {
  display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap;
}
.cqn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .7rem 1.3rem;
  border-radius: 50px;
  font-family: var(--futura);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  transition: all .3s;
}
.cqn:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-3px); }
.cqn .swatch { width: 12px; height: 12px; border-radius: 50%; }

/* CAVIAR SECTIONS - dynamic backgrounds */
.caviar-full.baeri { background: linear-gradient(140deg, var(--rose-xlight) 0%, var(--rose-light) 100%); }
.caviar-full.oscietre { background: linear-gradient(140deg, #FEFBE8 0%, var(--yellow-light) 100%); }
.caviar-full.beluga { background: linear-gradient(140deg, var(--teal-light) 0%, #D8F2F0 100%); }

.caviar-full.baeri .caviar-visual-bg { background: var(--rose); }
.caviar-full.oscietre .caviar-visual-bg { background: var(--yellow); }
.caviar-full.beluga .caviar-visual-bg { background: var(--teal); }

.caviar-full.baeri .caviar-info .name { color: var(--navy); }
.caviar-full.baeri .caviar-info .tagline { color: var(--rose-dark); }
.caviar-full.oscietre .caviar-info .tagline { color: var(--yellow-dark); }
.caviar-full.beluga .caviar-info .tagline { color: var(--teal-xdark); }

.caviar-visual-photo {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  overflow: hidden;
  opacity: .3;
  z-index: 1;
}
.caviar-visual-photo.baeri { background: url('../wetransfer_photos-produits_2025-08-01_1326/image00003.jpeg') center/cover; }
.caviar-visual-photo.oscietre { background: url('../wetransfer_photos-produits_2025-08-01_1326/image00007.jpeg') center/cover; }
.caviar-visual-photo.beluga { background: url('../wetransfer_photos-produits_2025-08-01_1326/BELUGA(4).jpeg') center/cover; }

/* Comparison table */
.compare-sec {
  padding: 8rem 2rem;
  background: var(--cream);
}
.compare-grid {
  max-width: 1100px; margin: 3rem auto 0;
  background: #fff;
  border-radius: 30px;
  padding: 2.5rem;
  box-shadow: var(--sh-sm);
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--futura);
}
.compare-table th, .compare-table td {
  padding: 1.3rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(43,58,140,.08);
}
.compare-table th {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(43,58,140,.5);
}
.compare-table th:first-child, .compare-table td:first-child {
  font-weight: 700;
  color: var(--navy);
}
.compare-table th.ch {
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.compare-table th.ch .swatch {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 50%;
  margin-right: .5rem;
  vertical-align: middle;
}
.compare-table td { color: rgba(43,58,140,.75); font-size: .95rem; }

/* Pairings */
.pairings-sec {
  padding: 8rem 2rem;
  background: var(--white);
}

/* CTA Footer to subscription */
.cta-sub {
  padding: 7rem 2rem;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-sub::before {
  content: ''; position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: var(--rose); opacity: .3;
  border-radius: 50%;
  filter: blur(120px);
}

.caviar-info .name.navy { color: var(--navy); }

@media(max-width:900px) {
  .compare-table th:not(:first-child),
  .compare-table td:not(:first-child) { display: table-cell; padding: .9rem .6rem; }
  .compare-table th, .compare-table td { padding: .9rem .6rem; font-size: .78rem; }
  .compare-table th.ch { font-size: 1rem; }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE LE CAVIAR — radios + comparison table + tips
═══════════════════════════════════════════════════════════════ */

/* Radio variant labels */
.caviar-size-label:hover {
  border-color: var(--teal) !important;
  color: var(--teal-xdark) !important;
}
input[type="radio"][name="id"]:checked + .caviar-size-label {
  background: var(--navy) !important;
  color: #fff !important;
  border-color: var(--navy) !important;
}

/* Comparison table */
.caviar-compare {
  padding: 6rem 2rem;
  background: var(--cream);
}
.compare-table-wrap {
  max-width: 1100px;
  margin: 3rem auto 0;
  overflow-x: auto;
  border-radius: 24px;
  box-shadow: var(--sh-lg);
  background: #fff;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th, .compare-table td {
  padding: 1.2rem 1.6rem;
  text-align: left;
  font-family: var(--futura);
  font-size: .95rem;
  color: var(--navy);
}
.compare-table thead {
  background: var(--navy);
  color: #fff;
}
.compare-table thead th {
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}
.compare-table tbody tr:nth-child(even) {
  background: rgba(43,58,140,.03);
}
.compare-table tbody tr:hover {
  background: var(--teal-light);
}
.compare-table tbody td:first-child {
  font-weight: 700;
  color: rgba(43,58,140,.7);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.compare-table .swatch {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  margin-right: .5rem;
  vertical-align: middle;
  box-shadow: 0 0 0 2px #fff inset;
}

/* Tips section */
.caviar-tips {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1080px;
  margin: 3rem auto 0;
}
.tip-card {
  padding: 2rem 2.2rem;
  border-radius: 24px;
  transition: transform .4s, box-shadow .4s;
}
.tip-card.rose { background: var(--rose-light); }
.tip-card.yellow { background: var(--yellow-light); }
.tip-card.teal { background: var(--teal-light); }
.tip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}
.tip-num {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--navy);
  letter-spacing: -.02em;
  opacity: .35;
  line-height: 1;
  margin-bottom: 1rem;
}
.tip-card h3 {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: -.01em;
  margin-bottom: .7rem;
}
.tip-card p {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(43,58,140,.78);
  font-size: 1rem;
  line-height: 1.55;
}

@media (max-width: 800px) {
  .tips-grid { grid-template-columns: 1fr; }
  .compare-table th, .compare-table td { padding: .8rem 1rem; font-size: .85rem; }
}

/* ═══════════════════════════════════════════════════════════════
   FIX IMAGES COUPÉES + MOBILE COMPACT (grilles 3 colonnes)
═══════════════════════════════════════════════════════════════ */

/* ─── Desktop : ajuster object-fit + padding pour ne plus couper ─── */
.caviar-mini-img {
  object-fit: contain !important;
  object-position: center center !important;
}
.auto-card-img {
  object-fit: contain !important;
  object-position: center center !important;
}
.caviar-visual img {
  object-fit: contain !important;
  object-position: center center !important;
}

/* ─── Mobile : grille 3 colonnes + cartes compactes ─── */
@media (max-width: 900px) {
  /* 3 caviars stars : 3 colonnes compactes */
  .caviars-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: .8rem !important;
  }
  .caviar-mini {
    min-height: auto !important;
    padding: 1.2rem .8rem 1.2rem !important;
    border-radius: 18px !important;
    text-align: center;
  }
  .caviar-mini-eyebrow {
    font-size: .55rem !important;
    max-width: 100% !important;
    margin-bottom: .3rem !important;
    text-align: center;
  }
  .caviar-mini-name {
    font-size: 1.05rem !important;
    max-width: 100% !important;
    margin-bottom: .4rem !important;
    text-align: center;
  }
  /* MASQUER la description sur mobile (juste nom + photo + prix) */
  .caviar-mini-desc {
    display: none !important;
  }
  /* Image plus petite, centrée */
  .caviar-mini-img {
    position: relative !important;
    width: 70% !important;
    max-width: 110px !important;
    margin: .5rem auto .8rem !important;
    top: auto !important;
    right: auto !important;
    transform: rotate(-6deg) !important;
  }
  .caviar-mini:hover .caviar-mini-img {
    transform: rotate(4deg) scale(1.05) !important;
  }
  .caviar-mini-foot {
    flex-direction: column !important;
    gap: .6rem !important;
    align-items: center !important;
  }
  .caviar-mini-price {
    font-size: 1.6rem !important;
    text-align: center;
  }
  .caviar-mini-price small {
    font-size: .55rem !important;
  }
  .caviar-mini-arrow {
    width: 36px !important;
    height: 36px !important;
    font-size: .9rem !important;
  }
  .bestseller-tag {
    font-size: .55rem !important;
    padding: .35rem .7rem !important;
    letter-spacing: .08em !important;
  }

  /* Autour du caviar : 3 colonnes compactes */
  .autour-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: .8rem !important;
  }
  .auto-card {
    min-height: auto !important;
    padding: 1rem .7rem !important;
    border-radius: 16px !important;
    text-align: center;
  }
  .auto-card-name {
    font-size: .85rem !important;
    max-width: 100% !important;
    text-align: center;
    margin-bottom: .3rem !important;
    line-height: 1.1;
  }
  /* MASQUER la description sur mobile */
  .auto-card-desc {
    display: none !important;
  }
  .auto-card-img {
    position: relative !important;
    width: 65% !important;
    max-width: 95px !important;
    height: auto !important;
    margin: 0 auto .5rem !important;
    right: auto !important;
    top: auto !important;
  }
  .auto-card-price {
    font-size: 1.1rem !important;
    text-align: center;
  }
  .auto-card-price small {
    font-size: .5rem !important;
  }

  /* Page Le Caviar : sections plus compactes sur mobile */
  .caviar-full-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .caviar-visual {
    aspect-ratio: 1/1 !important;
    padding: 1.5rem !important;
    max-width: 320px;
    margin: 0 auto;
  }
  .caviar-info .name {
    font-size: 2.2rem !important;
  }
  .caviar-specs {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .cspec-val { font-size: 1.1rem !important; }
  .cspec-lbl { font-size: .6rem !important; }
}

/* ─── Très petits écrans (< 400px) : 2 colonnes ─── */
@media (max-width: 400px) {
  .caviars-grid,
  .autour-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FIX FINAUX — Images coupées + Mobile uniforme
═══════════════════════════════════════════════════════════════ */

/* ─── 1. DESKTOP : Images dans .caviar-visual NON coupées ─── */
.caviar-visual {
  aspect-ratio: 1/1 !important;
  padding: 2rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}
.caviar-visual img {
  width: 90% !important;
  height: 90% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
}

/* ─── 2. HOMEPAGE : Cartes caviar UNIFORMES sur mobile ─── */
@media (max-width: 900px) {
  .caviars-grid {
    grid-auto-rows: 1fr !important;
    align-items: stretch !important;
  }
  .caviar-mini,
  .caviar-mini-wrap > .caviar-mini {
    min-height: 230px !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  .caviar-mini-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
}

/* ─── 3. PAGE LE CAVIAR mobile : ordre PHOTO d'abord pour tous ─── */
@media (max-width: 900px) {
  .caviar-full.reverse .caviar-full-grid {
    display: flex !important;
    flex-direction: column !important;
  }
  .caviar-full.reverse .caviar-full-grid .caviar-visual {
    order: -1 !important;
  }
  .caviar-full .caviar-full-grid {
    display: flex !important;
    flex-direction: column !important;
  }
  .caviar-full .caviar-full-grid .caviar-visual {
    order: -1 !important;
  }
}

/* ─── 4. PAGE LE CAVIAR mobile : Tableau UNIFIÉ avec scroll horizontal ─── */
@media (max-width: 800px) {
  .compare-table-wrap {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border-radius: 16px;
    padding: 1rem !important;
    box-shadow: var(--sh-sm);
    /* Hint visuel pour scroll */
    background-image: linear-gradient(to right, #fff, #fff), linear-gradient(to right, #fff, #fff),
                      linear-gradient(to right, rgba(43,58,140,.15), transparent),
                      linear-gradient(to left, rgba(43,58,140,.15), transparent);
    background-position: left center, right center, left center, right center;
    background-repeat: no-repeat;
    background-color: #fff;
    background-size: 20px 100%, 20px 100%, 12px 100%, 12px 100%;
    background-attachment: local, local, scroll, scroll;
  }
  .compare-table {
    width: max-content;
    min-width: 100%;
    display: table !important;
  }
  .compare-table thead { display: table-header-group !important; }
  .compare-table tbody { display: table-row-group !important; }
  .compare-table tr { display: table-row !important; background: none !important; padding: 0; box-shadow: none; }
  .compare-table th, .compare-table td {
    display: table-cell !important;
    padding: .8rem .9rem !important;
    text-align: left !important;
    font-size: .82rem !important;
    border: none;
    border-bottom: 1px solid rgba(43,58,140,.08) !important;
    white-space: nowrap;
    background: transparent !important;
    color: rgba(43,58,140,.78) !important;
    grid-column: auto !important;
  }
  .compare-table th {
    font-weight: 800;
    color: var(--navy) !important;
    background: rgba(43,58,140,.03) !important;
  }
  .compare-table th.ch {
    font-size: 1rem !important;
    text-transform: uppercase;
    letter-spacing: -.01em;
  }
  .compare-table th:first-child,
  .compare-table td:first-child {
    font-weight: 700;
    color: var(--navy) !important;
    background: rgba(43,58,140,.02) !important;
    border-radius: 0 !important;
    margin: 0 !important;
  }
  .compare-table tbody tr:last-child td { border-bottom: none !important; }
}

/* ─── 5. AUTOUR DU CAVIAR mobile : 2 colonnes plus lisibles + € visible ─── */
@media (max-width: 900px) {
  .autour-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  .auto-card {
    padding: 1.4rem 1rem !important;
    min-height: 220px !important;
    border-radius: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  .auto-card-name {
    font-size: 1rem !important;
    margin-bottom: .4rem !important;
    line-height: 1.15;
    max-width: 100% !important;
  }
  .auto-card-img {
    width: 70% !important;
    max-width: 130px !important;
    margin: .2rem auto .8rem !important;
  }
  .auto-card-price {
    font-size: 1.4rem !important;
    text-align: center;
    display: flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: .25rem !important;
  }
  /* Pas de ::after — le € est déjà dans le HTML directement */
  .auto-card-price small {
    font-size: .55rem !important;
    display: block !important;
    width: 100%;
    margin-top: .25rem !important;
    opacity: .7;
  }
}
@media (max-width: 400px) {
  .autour-grid {
    grid-template-columns: 1fr !important;
  }
  .auto-card {
    min-height: 180px !important;
  }
}

/* ─── 6. PAGE ESTURGEON : texte hero en NAVY (au lieu de blanc) ─── */
.est-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-xlight, #FBF5F5) 100%) !important;
}
.est-hero h1,
.est-hero h1 .it {
  color: var(--navy) !important;
}
.est-hero .lead,
.est-hero p {
  color: var(--navy) !important;
  opacity: .82;
}
.est-hero .eyebrow {
  color: var(--teal-xdark) !important;
}
.est-hero .eyebrow span {
  background: var(--teal) !important;
}
.est-pill {
  background: rgba(43,58,140,.08) !important;
  color: var(--navy) !important;
  border: 1px solid rgba(43,58,140,.15) !important;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE LE CAVIAR — Badge ORIGINE
═══════════════════════════════════════════════════════════════ */
.caviar-origin {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #fff;
  border: 1px solid rgba(43,58,140,.12);
  border-radius: 999px;
  padding: .55rem 1rem;
  font-family: var(--futura);
  font-size: .85rem;
  color: var(--navy);
  margin: 1rem 0 1.2rem;
  box-shadow: 0 2px 8px rgba(43,58,140,.04);
}
.caviar-origin strong {
  font-weight: 700;
  color: var(--navy);
}
.caviar-full.baeri .caviar-origin { border-color: rgba(247,197,197,.5); }
.caviar-full.oscietre .caviar-origin { border-color: rgba(242,223,110,.5); }
.caviar-full.beluga .caviar-origin { border-color: rgba(61,191,184,.5); background: rgba(255,255,255,.95); }

@media (max-width: 600px) {
  .caviar-origin {
    font-size: .78rem;
    padding: .45rem .8rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FIX FINAL — 3 CAVIARS CARDS IDENTIQUES (desktop + mobile)
═══════════════════════════════════════════════════════════════ */
/* Grid : forcer même taille pour tous les enfants */
.caviars-grid {
  align-items: stretch !important;
  grid-auto-rows: 1fr;
}

/* Tous les wraps : même hauteur, même comportement */
.caviar-mini-wrap {
  position: relative;
  padding-top: 18px;
  display: flex !important;
  flex-direction: column;
  height: 100%;
  min-height: 460px;
}
.caviar-mini-wrap > .caviar-mini {
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

/* Même structure interne pour TOUS */
.caviar-mini {
  min-height: 460px;
  display: flex;
  flex-direction: column;
}

/* Mobile : conserver la même hauteur entre tous */
@media (max-width: 900px) {
  .caviar-mini-wrap {
    min-height: 230px !important;
  }
  .caviar-mini-wrap > .caviar-mini {
    min-height: 0 !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PAGES LÉGALES — CGV, Livraison, Mentions, Confidentialité
═══════════════════════════════════════════════════════════════ */
.lg-hero {
  padding: calc(var(--banner-h) + var(--nav-h) + 3.5rem) 2rem 3.5rem;
  background: linear-gradient(135deg, var(--yellow-light) 0%, var(--rose-xlight) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lg-hero .blob-a { top: -20%; left: -5%; width: 320px; height: 320px; background: var(--yellow); opacity: .28; }
.lg-hero .blob-b { bottom: -40%; right: -5%; width: 360px; height: 360px; background: var(--rose); opacity: .22; }
.lg-hero-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.lg-hero .eyebrow { justify-content: center; }
.lg-hero h1 {
  font-family: var(--futura);
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: .98;
  letter-spacing: -.035em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
}
.lg-hero h1 .it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--teal);
}
.lg-hero p { color: rgba(43,58,140,.72); font-size: 1rem; max-width: 580px; margin: 0 auto; line-height: 1.6; }

.lg-section { padding: 5rem 2rem 7rem; background: #fff; }
.lg-wrap {
  max-width: 900px; margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}
.lg-toc {
  position: sticky; top: calc(var(--banner-h) + var(--nav-h) + 2rem);
  background: #F7F7FA;
  border-radius: var(--radius, 20px);
  padding: 1.5rem;
  max-height: 75vh;
  overflow-y: auto;
}
.lg-toc-title {
  font-family: var(--futura);
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(43,58,140,.55);
  margin-bottom: 1rem;
}
.lg-toc ul { display: flex; flex-direction: column; gap: .4rem; list-style: none; padding: 0; margin: 0; }
.lg-toc a {
  display: block;
  padding: .5rem .7rem;
  border-radius: 8px;
  font-size: .85rem;
  color: rgba(43,58,140,.72);
  transition: all .2s;
  font-weight: 500;
  border-left: 3px solid transparent;
  text-decoration: none;
}
.lg-toc a:hover { color: var(--navy); background: #fff; border-left-color: var(--teal); }

.lg-content h2 {
  font-family: var(--futura);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: -.02em;
  margin: 3rem 0 1.2rem;
  scroll-margin-top: 140px;
}
.lg-content h2:first-child { margin-top: 0; }
.lg-content h2 .num {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  width: 2rem; height: 2rem;
  border-radius: 8px;
  text-align: center;
  line-height: 2rem;
  font-size: .95rem;
  margin-right: .7rem;
  vertical-align: middle;
}
.lg-content h3 {
  font-family: var(--futura);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: .01em;
  margin: 1.8rem 0 .6rem;
}
.lg-content p {
  color: rgba(43,58,140,.78);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: .95rem;
}
.lg-content a { color: var(--teal-xdark, var(--teal)); font-weight: 600; border-bottom: 1px solid var(--teal-soft, var(--teal-light)); text-decoration: none; }
.lg-content strong { color: var(--navy); font-weight: 700; }
.lg-content ul, .lg-content ol { margin: .8rem 0 1.2rem 0; padding-left: 1.4rem; }
.lg-content ul { list-style: disc; }
.lg-content ol { list-style: decimal; }
.lg-content li { color: rgba(43,58,140,.78); line-height: 1.65; margin-bottom: .4rem; font-size: .95rem; }

.lg-info-box {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--rose-xlight) 100%);
  border-radius: 16px;
  padding: 1.5rem 1.8rem;
  margin: 1.5rem 0;
  border-left: 5px solid var(--teal);
}
.lg-info-box p { margin: 0 0 .4rem; }
.lg-info-box p:last-child { margin-bottom: 0; }

.lg-updated {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(43,58,140,.08);
  font-size: .85rem;
  color: rgba(43,58,140,.55);
  font-style: italic;
}

@media(max-width:900px) {
  .lg-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .lg-toc { position: static; max-height: none; }
}
