/* =========================================================
   MAISON NOYAU V2 — ACCUEIL PREMIUM PATRIMOINE
   Architecture: Hero → Marquee → Histoire → Timeline →
                 Produits WC → Savoir-faire → Citation →
                 Rituels → CTA final
   ========================================================= */

.mn-home-v2 {
  --mnv2-bg: #f7f1e3;
  --mnv2-bg-soft: #fbf6e8;
  --mnv2-ink: #1A1825;
  --mnv2-ink-soft: #3a3848;
  --mnv2-gold: #E8A820;
  --mnv2-gold-deep: #C4861A;
  --mnv2-gold-pale: #F9E4A0;
  --mnv2-indigo: #2E2A5E;
  --mnv2-indigo-deep: #1f1c47;
  --mnv2-cream: #F4EFE3;
  --mnv2-red: #C0281E;
  --mnv2-shadow-lg: 0 30px 80px rgba(20, 18, 34, 0.18);
  --mnv2-shadow-md: 0 14px 38px rgba(20, 18, 34, 0.12);

  width: 100vw;
  max-width: none !important;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-inline: 0 !important;
  background: var(--mnv2-bg);
  color: var(--mnv2-ink);
  overflow: hidden;
}

.mnv2-shell {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}
.mnv2-shell--narrow { width: min(820px, calc(100% - 48px)); }

/* ── Eyebrows / Labels ─────────────────────────────────── */
.mnv2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-family: var(--mn-font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mnv2-gold-deep);
}
.mnv2-eyebrow--gold { color: var(--mnv2-gold); }
.mnv2-eyebrow__crown { font-size: 1rem; line-height: 1; transform: translateY(-1px); }

/* ── Titles ─────────────────────────────────────────────── */
.mnv2-h2 {
  margin: 0 0 16px;
  font-family: var(--mn-font-serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--mnv2-ink);
}
.mnv2-h2--light { color: var(--mnv2-cream); }
.mnv2-script {
  font-family: var(--mn-font-script), 'Satisfy', cursive;
  font-style: normal;
  font-weight: 400;
  color: var(--mnv2-gold);
  letter-spacing: 0.005em;
}

.mnv2-lede {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.85;
  color: var(--mnv2-ink-soft);
  max-width: 56ch;
}

.mnv2-section {
  position: relative;
  padding: clamp(72px, 10vw, 128px) 0;
}
.mnv2-section--dark {
  background:
    radial-gradient(circle at 80% 0%, rgba(232, 168, 32, 0.07), transparent 35%),
    linear-gradient(180deg, var(--mnv2-indigo-deep) 0%, #14122a 100%);
  color: var(--mnv2-cream);
}

.mnv2-section__head { margin-bottom: 56px; max-width: 720px; }
.mnv2-section__head--center { text-align: center; margin-inline: auto; }
.mnv2-section__head--split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* ── Boutons custom ─────────────────────────────────────── */
.mnv2-arrow {
  display: inline-block;
  margin-left: 4px;
  transition: transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mn-btn:hover .mnv2-arrow,
.mnv2-link-arrow:hover .mnv2-arrow { transform: translateX(6px); }

.mnv2-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mn-font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mnv2-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--mnv2-gold);
  padding-bottom: 4px;
  transition: color 240ms;
}
.mnv2-link-arrow:hover { color: var(--mnv2-gold-deep); }

.mnv2-link-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-family: var(--mn-font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mnv2-cream);
  text-decoration: none;
}
.mnv2-link-ghost__line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--mnv2-gold);
  transition: width 320ms cubic-bezier(0, 0, 0.2, 1);
}
.mnv2-link-ghost:hover { color: var(--mnv2-gold); }
.mnv2-link-ghost:hover .mnv2-link-ghost__line { width: 56px; }

.mnv2-btn--light { color: var(--mnv2-cream) !important; border-color: var(--mnv2-cream) !important; }
.mnv2-btn--light:hover { background: var(--mnv2-cream) !important; color: var(--mnv2-ink) !important; }

/* ════════════════════════════════════════════════════════
   1. HERO PATRIMONIAL
   ════════════════════════════════════════════════════════ */
.mnv2-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.mnv2-hero__bg { position: absolute; inset: 0; z-index: -1; }
.mnv2-hero__bg-poster { position: absolute; inset: -10%; }
.mnv2-hero__bg-poster img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(2px) saturate(1.1) brightness(0.55);
}
.mnv2-hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(46, 42, 94, 0.55), transparent 50%),
    linear-gradient(135deg, rgba(20, 18, 34, 0.92) 0%, rgba(46, 42, 94, 0.78) 50%, rgba(20, 18, 34, 0.94) 100%);
}
.mnv2-hero__grain {
  position: absolute; inset: 0;
  opacity: 0.16;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.mnv2-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}
.mnv2-hero__content { color: var(--mnv2-cream); position: relative; z-index: 2; }

.mnv2-hero__title {
  margin: 18px 0 28px;
  font-family: var(--mn-font-serif);
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 400;
  color: #fff;
}
.mnv2-hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: mnv2-rise 900ms cubic-bezier(0, 0, 0.2, 1) forwards;
}
.mnv2-hero__title-line:nth-child(1) { animation-delay: 0.15s; }
.mnv2-hero__title-line:nth-child(2) { animation-delay: 0.32s; }
.mnv2-hero__title-line:nth-child(3) { animation-delay: 0.5s; }
.mnv2-hero__title-line--script {
  font-family: var(--mn-font-script), 'Satisfy', cursive;
  font-style: normal;
  font-size: 0.88em;
  color: var(--mnv2-gold);
  padding-left: 0.4em;
  letter-spacing: -0.01em;
}
@keyframes mnv2-rise {
  to { opacity: 1; transform: translateY(0); }
}

.mnv2-hero__lead {
  max-width: 54ch;
  font-size: 1.06rem;
  line-height: 1.85;
  color: rgba(244, 239, 227, 0.86);
  margin-bottom: 36px;
  opacity: 0;
  animation: mnv2-rise 900ms cubic-bezier(0, 0, 0.2, 1) 0.7s forwards;
}
.mnv2-hero__lead strong { color: var(--mnv2-gold); font-weight: 600; }

.mnv2-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-bottom: 56px;
  opacity: 0;
  animation: mnv2-rise 900ms cubic-bezier(0, 0, 0.2, 1) 0.85s forwards;
}

.mnv2-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(20px, 4vw, 48px);
  padding-top: 28px;
  border-top: 1px solid rgba(244, 239, 227, 0.16);
  opacity: 0;
  animation: mnv2-rise 900ms cubic-bezier(0, 0, 0.2, 1) 1s forwards;
}
.mnv2-hero__meta-item { display: flex; flex-direction: column; gap: 4px; }
.mnv2-hero__meta-num {
  font-family: var(--mn-font-serif);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 400;
  color: var(--mnv2-gold);
  letter-spacing: 0.02em;
}
.mnv2-hero__meta-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 227, 0.6);
}

/* Visual côté droit */
.mnv2-hero__visual {
  position: relative;
  height: 620px;
  perspective: 1400px;
}
.mnv2-hero__bottle {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 62%;
  max-width: 380px;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.45));
  animation: mnv2-float 6s ease-in-out infinite;
}
.mnv2-hero__bottle img { width: 100%; height: auto; display: block; }

.mnv2-hero__jar {
  position: absolute;
  left: -8%;
  bottom: 8%;
  width: 42%;
  max-width: 240px;
  opacity: 0.85;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.4));
}
.mnv2-hero__jar img { width: 100%; height: auto; display: block; }

@keyframes mnv2-float {
  0%, 100% { transform: translateY(-50%); }
  50%      { transform: translateY(calc(-50% - 14px)); }
}

.mnv2-hero__signature {
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 220px;
  color: var(--mnv2-gold);
  opacity: 0.7;
}
.mnv2-signature__path {
  stroke-dasharray: 350;
  stroke-dashoffset: 350;
  animation: mnv2-draw 2.4s ease-out 1.4s forwards;
}
@keyframes mnv2-draw { to { stroke-dashoffset: 0; } }

/* Indicateur scroll */
.mnv2-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1px solid rgba(244, 239, 227, 0.4);
  border-radius: 16px;
  cursor: pointer;
  z-index: 3;
}
.mnv2-hero__scroll span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 2px;
  height: 6px;
  background: var(--mnv2-gold);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: mnv2-scroll 1.8s ease-in-out infinite;
}
@keyframes mnv2-scroll {
  0%   { opacity: 0; transform: translate(-50%, 0); }
  30%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 16px); }
}

/* ════════════════════════════════════════════════════════
   2. MARQUEE
   ════════════════════════════════════════════════════════ */
.mnv2-marquee {
  background: var(--mnv2-ink);
  color: var(--mnv2-cream);
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid rgba(232, 168, 32, 0.3);
  border-bottom: 1px solid rgba(232, 168, 32, 0.3);
}
.mnv2-marquee__track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: mnv2-marquee 50s linear infinite;
  width: max-content;
}
.mnv2-marquee__item {
  font-family: var(--mn-font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.mnv2-marquee__sep { color: var(--mnv2-gold); font-size: 0.9rem; opacity: 0.8; }
@keyframes mnv2-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.33%); }
}

/* ════════════════════════════════════════════════════════
   3. HISTOIRE
   ════════════════════════════════════════════════════════ */
.mnv2-histoire__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.mnv2-histoire__media {
  position: relative;
  aspect-ratio: 4/5;
}
.mnv2-histoire__media-main {
  width: 100%; height: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--mnv2-shadow-lg);
  background: #1a1825;
}
.mnv2-histoire__media-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.1) contrast(1.05);
}
.mnv2-histoire__media-pin {
  position: absolute;
  right: -10%;
  bottom: 12%;
  width: 36%;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid var(--mnv2-cream);
  box-shadow: var(--mnv2-shadow-md);
}
.mnv2-histoire__media-pin img { width: 100%; height: 100%; object-fit: cover; }

.mnv2-histoire__date {
  position: absolute;
  left: -30px;
  top: 30px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--mnv2-gold);
  color: var(--mnv2-ink);
  display: grid;
  place-items: center;
  font-family: var(--mn-font-serif);
  font-size: 0.78rem;
  text-align: center;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.05em;
  box-shadow: 0 12px 28px rgba(232, 168, 32, 0.4);
  transform: rotate(-8deg);
}
.mnv2-histoire__date strong { display: block; font-size: 1.5rem; font-weight: 600; }

.mnv2-histoire__stamps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(20, 18, 34, 0.1);
}
.mnv2-stamp {
  text-align: center;
  padding: 18px 12px;
  border: 1px solid rgba(232, 168, 32, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.5);
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mnv2-stamp:hover {
  background: var(--mnv2-gold-pale);
  transform: translateY(-3px);
}
.mnv2-stamp__num {
  display: block;
  font-family: var(--mn-font-serif);
  font-size: 1.6rem;
  color: var(--mnv2-indigo);
  margin-bottom: 4px;
}
.mnv2-stamp__lbl {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mnv2-ink-soft);
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════
   4. TIMELINE
   ════════════════════════════════════════════════════════ */
.mnv2-timeline__list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.mnv2-timeline__list::before {
  content: '';
  position: absolute;
  left: 5%; right: 5%;
  top: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mnv2-gold) 20%, var(--mnv2-gold) 80%, transparent);
  z-index: 0;
}
.mnv2-timeline__item {
  position: relative;
  text-align: center;
  z-index: 1;
}
.mnv2-timeline__year {
  display: inline-block;
  background: var(--mnv2-indigo-deep);
  border: 1px solid var(--mnv2-gold);
  color: var(--mnv2-gold);
  font-family: var(--mn-font-serif);
  font-size: 1.15rem;
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.mnv2-timeline__media {
  width: 140px; height: 140px;
  margin: 0 auto 22px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(232, 168, 32, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mnv2-timeline__media img { width: 100%; height: 100%; object-fit: cover; }
.mnv2-timeline__item:hover .mnv2-timeline__media { transform: scale(1.06) rotate(-2deg); }
.mnv2-timeline__title {
  font-family: var(--mn-font-serif);
  font-size: 1.4rem;
  color: var(--mnv2-cream);
  margin: 0 0 10px;
  font-weight: 400;
}
.mnv2-timeline__item p {
  color: rgba(244, 239, 227, 0.65);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

/* ════════════════════════════════════════════════════════
   5. PRODUITS
   ════════════════════════════════════════════════════════ */
.mnv2-products { background: var(--mnv2-bg-soft); }
.mnv2-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.mnv2-products__grid.is-cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 920px; margin: 0 auto; }

.mnv2-product {
  background: #fff;
  border: 1px solid rgba(20, 18, 34, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 380ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 380ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.mnv2-product:hover {
  transform: translateY(-6px);
  box-shadow: var(--mnv2-shadow-lg);
}
.mnv2-product__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  background: linear-gradient(180deg, #fbf6e8 0%, #ebdfc4 100%);
}
.mnv2-product__media-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 70%, rgba(232, 168, 32, 0.18), transparent 50%);
  pointer-events: none;
  transition: opacity 400ms;
}
.mnv2-product__media img {
  position: relative;
  width: 78%;
  height: 100%;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 18px 28px rgba(20, 18, 34, 0.25));
}
.mnv2-product:hover .mnv2-product__media img {
  transform: scale(1.07) translateY(-6px);
}
.mnv2-product__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--mnv2-ink);
  color: var(--mnv2-gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 2;
}

.mnv2-product__body { padding: 28px 26px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.mnv2-product__meta {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mnv2-gold-deep);
}
.mnv2-product__title {
  margin: 0;
  font-family: var(--mn-font-serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--mnv2-ink);
}
.mnv2-product__title a { color: inherit; text-decoration: none; }
.mnv2-product__desc { font-size: 0.92rem; line-height: 1.6; color: var(--mnv2-ink-soft); margin: 0; }
.mnv2-product__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
}
.mnv2-product__price {
  font-family: var(--mn-font-serif);
  font-size: 1.4rem;
  color: var(--mnv2-indigo);
  font-weight: 500;
}
.mnv2-product__price del { opacity: 0.45; font-size: 0.85em; }
.mnv2-product__price ins { text-decoration: none; color: var(--mnv2-red); }

.mnv2-product-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 32px;
  border: 2px dashed rgba(20, 18, 34, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
}
.mnv2-product-empty h3 { font-family: var(--mn-font-serif); font-size: 1.6rem; margin: 0 0 12px; }

/* ════════════════════════════════════════════════════════
   6. SAVOIR-FAIRE
   ════════════════════════════════════════════════════════ */
.mnv2-savoir-faire__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.mnv2-process {
  list-style: none;
  margin: 32px 0 0; padding: 0;
  display: grid;
  gap: 18px;
}
.mnv2-process li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(232, 168, 32, 0.2);
  border-radius: 6px;
  transition: all 320ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mnv2-process li:hover {
  background: #fff;
  border-color: var(--mnv2-gold);
  transform: translateX(6px);
}
.mnv2-process__num {
  font-family: var(--mn-font-serif);
  font-size: 2rem;
  color: var(--mnv2-gold);
  line-height: 1;
  font-weight: 300;
}
.mnv2-process strong {
  display: block;
  font-family: var(--mn-font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--mnv2-ink);
  margin-bottom: 4px;
}
.mnv2-process p { margin: 0; font-size: 0.92rem; color: var(--mnv2-ink-soft); line-height: 1.6; }

.mnv2-savoir-faire__mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 200px 200px 200px;
  gap: 14px;
  height: 620px;
}
.mnv2-mosaic__cell {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--mnv2-shadow-md);
}
.mnv2-mosaic__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms; }
.mnv2-mosaic__cell:hover img { transform: scale(1.06); }
.mnv2-mosaic__cell--1 { grid-row: 1 / 3; grid-column: 1; }
.mnv2-mosaic__cell--2 { grid-row: 1; grid-column: 2; }
.mnv2-mosaic__cell--3 { grid-row: 2 / 4; grid-column: 2; }
.mnv2-mosaic__cell--4 { grid-row: 3; grid-column: 1; }

/* ════════════════════════════════════════════════════════
   7. CITATION
   ════════════════════════════════════════════════════════ */
.mnv2-quote {
  background:
    linear-gradient(180deg, var(--mnv2-bg) 0%, var(--mnv2-bg-soft) 100%);
  text-align: center;
}
.mnv2-quote__inner { position: relative; padding: 0 24px; }
.mnv2-quote__mark {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mn-font-serif);
  font-size: 8rem;
  color: var(--mnv2-gold);
  line-height: 1;
  opacity: 0.3;
}
.mnv2-quote blockquote { margin: 0; }
.mnv2-quote__text {
  font-family: var(--mn-font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  line-height: 1.35;
  color: var(--mnv2-ink);
  margin: 0 0 32px;
}
.mnv2-quote__source {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mnv2-indigo);
}
.mnv2-quote__line { width: 36px; height: 1px; background: var(--mnv2-gold); }

/* ════════════════════════════════════════════════════════
   8. RITUELS
   ════════════════════════════════════════════════════════ */
.mnv2-rituals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mnv2-ritual {
  padding: 40px 32px;
  background: #fff;
  border: 1px solid rgba(20, 18, 34, 0.08);
  border-radius: 8px;
  text-align: center;
  transition: all 320ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mnv2-ritual:hover {
  border-color: var(--mnv2-gold);
  box-shadow: 0 24px 48px rgba(232, 168, 32, 0.18);
}
.mnv2-ritual__icon {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  color: var(--mnv2-gold);
  display: grid;
  place-items: center;
  border: 1px solid rgba(232, 168, 32, 0.3);
  border-radius: 50%;
  transition: all 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mnv2-ritual:hover .mnv2-ritual__icon {
  background: var(--mnv2-gold);
  color: #fff;
  transform: scale(1.08) rotate(-6deg);
}
.mnv2-ritual__icon svg { width: 32px; height: 32px; }
.mnv2-ritual h3 {
  font-family: var(--mn-font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--mnv2-ink);
}
.mnv2-ritual p { margin: 0; color: var(--mnv2-ink-soft); font-size: 0.95rem; line-height: 1.65; }

/* ════════════════════════════════════════════════════════
   9. CTA FINAL
   ════════════════════════════════════════════════════════ */
.mnv2-cta-final { padding-bottom: 0; }
.mnv2-cta-final__box {
  position: relative;
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 48px;
  align-items: center;
  padding: clamp(48px, 6vw, 80px);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 168, 32, 0.18), transparent 50%),
    linear-gradient(135deg, var(--mnv2-indigo-deep) 0%, var(--mnv2-ink) 100%);
  color: var(--mnv2-cream);
  overflow: hidden;
  isolation: isolate;
}
.mnv2-cta-final__art { position: relative; }
.mnv2-cta-final__art img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.5));
  animation: mnv2-float 7s ease-in-out infinite;
}
.mnv2-cta-final__content p { color: rgba(244, 239, 227, 0.78); margin: 0 0 28px; }
.mnv2-cta-final__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .mnv2-hero__inner,
  .mnv2-histoire__grid,
  .mnv2-savoir-faire__grid,
  .mnv2-cta-final__box {
    grid-template-columns: 1fr;
  }
  .mnv2-hero__visual { height: 460px; order: -1; }
  .mnv2-timeline__list { grid-template-columns: repeat(2, 1fr); }
  .mnv2-timeline__list::before { display: none; }
  .mnv2-savoir-faire__mosaic { height: 460px; }
  .mnv2-cta-final__art { max-width: 220px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .mnv2-shell { width: min(100% - 32px, 1280px); }
  .mnv2-hero { min-height: auto; padding: 96px 0 64px; }
  .mnv2-hero__title { font-size: clamp(2.4rem, 11vw, 4rem); }
  .mnv2-hero__meta { grid-template-columns: 1fr; gap: 16px; }
  .mnv2-hero__visual { height: 360px; }
  .mnv2-hero__bottle { width: 56%; right: 8%; }
  .mnv2-hero__jar { width: 38%; bottom: 4%; }
  .mnv2-hero__scroll { display: none; }

  .mnv2-histoire__date { left: -10px; top: 10px; width: 88px; height: 88px; font-size: 0.7rem; }
  .mnv2-histoire__date strong { font-size: 1.2rem; }
  .mnv2-histoire__media-pin { width: 30%; right: -4%; }
  .mnv2-histoire__stamps { grid-template-columns: 1fr; }

  .mnv2-timeline__list { grid-template-columns: 1fr; }

  .mnv2-products__grid,
  .mnv2-products__grid.is-cols-2,
  .mnv2-rituals__grid { grid-template-columns: 1fr; }

  .mnv2-savoir-faire__mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
    height: auto;
  }
  .mnv2-mosaic__cell--1, .mnv2-mosaic__cell--2,
  .mnv2-mosaic__cell--3, .mnv2-mosaic__cell--4 { grid-row: auto; grid-column: auto; }
  .mnv2-mosaic__cell--3 { display: none; }

  .mnv2-section__head--split { flex-direction: column; align-items: start; }

  .mnv2-product__foot { flex-direction: column; align-items: stretch; }
  .mnv2-product__foot .mn-btn { width: 100%; }

  .mnv2-cta-final__actions .mn-btn { width: 100%; }
}

/* ── prefers-reduced-motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .mnv2-marquee__track,
  .mnv2-hero__bottle,
  .mnv2-cta-final__art img,
  .mnv2-hero__title-line,
  .mnv2-hero__lead,
  .mnv2-hero__cta,
  .mnv2-hero__meta,
  .mnv2-signature__path { animation: none !important; opacity: 1; transform: none; }
}


/* =========================================================
   V5.1 — FIX CTA FINAL BOUTEILLE FLOTTANTE
   La jarre dans le CTA final manquait d'intégration visuelle.
   Solution : limiter sa hauteur, centrer, ajouter halo doré derrière.
   ========================================================= */
.mnv2-cta-final__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.mnv2-cta-final__art::before {
  content: '';
  position: absolute;
  inset: 50% 0 0 0;
  width: 90%;
  height: 50%;
  margin: 0 auto;
  background:
    radial-gradient(ellipse at center top, rgba(232, 168, 32, 0.35), transparent 65%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}
.mnv2-cta-final__art img {
  position: relative;
  z-index: 1;
  max-height: 320px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  filter:
    drop-shadow(0 28px 36px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 60px rgba(232, 168, 32, 0.25));
}

@media (max-width: 1100px) {
  .mnv2-cta-final__art { min-height: 220px; padding: 24px 0; }
  .mnv2-cta-final__art img { max-height: 240px; max-width: 180px; }
}
@media (max-width: 768px) {
  .mnv2-cta-final__art { min-height: 180px; }
  .mnv2-cta-final__art img { max-height: 200px; max-width: 150px; }
}

/* Évite le débordement horizontal sur le marquee si peu de mémoire */
.mnv2-marquee { contain: paint; }

/* Si le menu Kadence est désactivé, garde une zone safe en haut sur la home */
.mn-home-v2 { padding-top: 0 !important; }
