:root {
  --ivory: #FCFAF5;
  --sand: #EAE0D0;
  --cacao: #4A362A;
  --bordeaux: #4E141F;
  --bordeaux-pastel: #6E2F3B;
  --gold: #C5A46E;
  --brun-clair: #C9AE87;
  --brun-fonce: #5A4636;
  --gris-perle: #D9D4CC;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  box-sizing: border-box;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-group.in-view .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item:nth-child(1) { transition-delay: 0s; }
.reveal-item:nth-child(2) { transition-delay: 0.12s; }
.reveal-item:nth-child(3) { transition-delay: 0.24s; }
.reveal-item:nth-child(4) { transition-delay: 0.36s; }

/* ---------- manifeste "Le henné. Le hammam..." ---------- */
.manifesto {
  position: relative;
  width: 100%;
  background: linear-gradient(160deg, #1a0509 0%, #0e0305 100%);
  isolation: isolate;
}

.manifesto-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  perspective: 1400px;
}

.manifesto-bg-inner {
  position: absolute;
  inset: 0;
}

.manifesto-bg-inner img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center center;
  transform-origin: 50% 50%;
  animation: gateDollyIn 7s cubic-bezier(.19, 1, .22, 1) forwards;
  will-change: transform;
}

@keyframes gateDollyIn {
  0%   { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.gate-brand {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  padding: 34px 60px;
}

.gate-brand::before {
  content: '';
  position: absolute;
  inset: -18px -30px;
  z-index: -1;
  background: radial-gradient(62% 78% at 50% 50%, rgba(10, 4, 4, .62) 0%, rgba(10, 4, 4, .34) 55%, rgba(10, 4, 4, 0) 88%);
  filter: blur(8px);
}

.gate-brand-shine {
  background: linear-gradient(100deg,
    var(--bordeaux) 0%,
    var(--bordeaux) 45%,
    var(--bordeaux-pastel) 48.5%,
    #f0c988 50%,
    var(--bordeaux-pastel) 51.5%,
    var(--bordeaux) 55%,
    var(--bordeaux) 100%);
  background-size: 450% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 0.4px rgba(197, 164, 110, .55);
  color: transparent;
  animation: shineSweep 6s linear infinite;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .6)) drop-shadow(0 4px 16px rgba(0, 0, 0, .6));
}

.gate-brand-the {
  font-family: 'Parisienne', cursive;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1;
  margin: 0 0 4px;
}

.gate-brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(38px, 7vw, 76px);
  letter-spacing: 0.12em;
  line-height: 1;
  margin: 0;
}

.gate-brand-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(10px, 1.2vw, 13px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin: 10px 0 0;
}

.gate-brand-soon {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: .75;
  margin: 18px 0 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .6), 0 3px 12px rgba(0, 0, 0, .55);
}

.gate-brand-shine-gold {
  background: linear-gradient(100deg,
    var(--gold) 0%,
    var(--gold) 45%,
    #fffaea 49%,
    #fffef5 50%,
    #fffaea 51%,
    var(--gold) 55%,
    var(--gold) 100%);
  background-size: 450% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shineSweep 6s linear infinite;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .55));
}

@media (prefers-reduced-motion: reduce) {
  .gate-brand-shine,
  .gate-brand-shine-gold { animation: none; background-position: 40% center; }
}

.gate-clouds {
  position: absolute;
  inset: 0 0 50% 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: .6;
}

.gate-clouds::before,
.gate-clouds::after {
  content: '';
  position: absolute;
  top: 4%;
  width: 65%;
  height: 65%;
  background:
    radial-gradient(38% 55% at 30% 50%, rgba(225, 225, 235, .8) 0%, rgba(225, 225, 235, 0) 70%),
    radial-gradient(30% 45% at 62% 45%, rgba(225, 225, 235, .7) 0%, rgba(225, 225, 235, 0) 72%);
  filter: blur(14px);
  animation: cloudDrift 26s linear infinite;
}

.gate-clouds::after {
  top: 0%;
  width: 50%;
  height: 45%;
  opacity: .75;
  animation-duration: 38s;
  animation-direction: reverse;
}

@keyframes cloudDrift {
  0%   { left: -55%; }
  100% { left: 100%; }
}

.gate-window-glow {
  position: absolute;
  inset: 35% 0 0 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  background: radial-gradient(55% 70% at 52% 55%, rgba(255, 197, 120, .5) 0%, rgba(255, 197, 120, .22) 45%, rgba(255, 197, 120, 0) 75%);
  animation: windowGlow 4.5s ease-in-out infinite;
}

@keyframes windowGlow {
  0%, 100% { opacity: .35; }
  50%      { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .gate-clouds::before,
  .gate-clouds::after { animation: none; }
  .gate-window-glow { animation: none; opacity: .8; }
}

.manifesto-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(14, 3, 5, .1) 0%, rgba(14, 3, 5, 0) 45%, rgba(14, 3, 5, .38) 100%);
}

.gate-chevron {
  position: absolute;
  left: 50%;
  bottom: 46px;
  z-index: 2;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  opacity: .8;
  animation: gateChevronBounce 2.2s ease-in-out infinite;
}

.gate-chevron svg { width: 100%; height: 100%; }

@keyframes gateChevronBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .55; }
  50%      { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .manifesto-bg-inner img { animation: none; transform: scale(1); }
  .gate-chevron { animation: none; }
}

.decor-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(60% 50% at var(--mx, 50%) var(--my, 40%), rgba(197, 164, 110, .22) 0%, rgba(197, 164, 110, 0) 70%);
  animation: decorBreathe 9s ease-in-out infinite;
}

@keyframes decorBreathe {
  0%, 100% { opacity: .6; }
  50%      { opacity: 1; }
}

.decor-sheen {
  position: absolute;
  top: -30%;
  left: -40%;
  width: 55%;
  height: 170%;
  background: linear-gradient(105deg,
    rgba(252, 250, 245, 0) 0%,
    rgba(252, 250, 245, .1) 38%,
    rgba(255, 255, 255, .28) 50%,
    rgba(252, 250, 245, .1) 62%,
    rgba(252, 250, 245, 0) 100%);
  transform: rotate(8deg) translateX(-40%);
  mix-blend-mode: soft-light;
  filter: blur(6px);
  animation: decorSweep 11s cubic-bezier(.45,0,.2,1) infinite;
  pointer-events: none;
}

@keyframes decorSweep {
  0%   { transform: rotate(8deg) translateX(-60%); opacity: 0; }
  12%  { opacity: 1; }
  46%  { opacity: 1; }
  64%  { transform: rotate(8deg) translateX(360%); opacity: 0; }
  100% { transform: rotate(8deg) translateX(360%); opacity: 0; }
}

/* état par défaut (sans JS / motion réduit) : bloc statique, toutes les lignes visibles */
.manifesto-sticky {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 110px 24px;
  text-align: center;
}

.manifesto-sticky::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.manifesto-sticky::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(130% 100% at 50% 50%, rgba(0,0,0,0) 38%, rgba(0,0,0,.5) 100%);
}

.manifesto-sticky .manifesto-line,
.manifesto-sticky .decor-cta,
.manifesto-sticky .manifesto-progress {
  position: relative;
  z-index: 1;
}

.manifesto-progress {
  display: none;
  position: absolute;
  left: calc(50% + 210px);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 220px;
}

.manifesto.cinematic .manifesto-progress {
  display: block;
}

.manifesto-progress-track {
  position: absolute;
  inset: 0;
  background: rgba(252, 250, 245, .15);
}

.manifesto-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--gold), #fff6df);
  box-shadow: 0 0 8px rgba(197, 164, 110, .6);
}

@media (max-width: 900px) {
  .manifesto-progress { display: none !important; }
}

.manifesto-line {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(18px, 2.4vw, 26px);
  line-height: 1.2;
  color: var(--sand);
  margin: 0;
}

.manifesto-line-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.manifesto-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  opacity: .85;
}

.manifesto-final {
  font-size: clamp(24px, 3.6vw, 38px);
  color: var(--ivory);
  margin-top: 10px;
}

.shine {
  font-style: italic;
  background: linear-gradient(100deg, var(--gold) 20%, #fff6df 50%, var(--gold) 80%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shineSweep 3.5s linear infinite;
}

@keyframes shineSweep {
  0%   { background-position: 0% center; }
  100% { background-position: 220% center; }
}

.decor-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ivory);
  text-decoration: none;
  padding-bottom: 6px;
  margin-top: 30px;
  border-bottom: 1px solid rgba(252, 250, 245, .5);
  transition: gap 0.3s ease, border-color 0.3s ease;
}

.decor-cta:hover {
  gap: 18px;
  border-color: var(--gold);
}

.decor-cta .arrow {
  transition: transform 0.3s ease;
}

.decor-cta:hover .arrow {
  transform: translateX(3px);
}

/* état "cinématique" : activé en JS quand le mouvement est autorisé — la section devient haute
   et son contenu reste épinglé pendant que les lignes se révèlent une à une au scroll */
.manifesto.cinematic {
  height: 340vh;
}

.manifesto.cinematic .manifesto-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px;
  gap: 20px;
}

.manifesto.cinematic .manifesto-line {
  opacity: 0;
  transform: translateY(26px) scale(.94);
  transition: opacity .6s ease, transform .6s ease, color .6s ease;
}

.manifesto.cinematic .manifesto-line.active {
  opacity: 1;
  color: var(--ivory);
  transform: translateY(0) scale(1);
}

.manifesto.cinematic .manifesto-line.passed {
  opacity: .3;
  transform: translateY(-8px) scale(.98);
}

.manifesto.cinematic .manifesto-cta {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}

.manifesto.cinematic .manifesto-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 600px) {
  .manifesto-sticky { padding: 80px 20px; }
  .manifesto.cinematic { height: 300vh; }
}

@media (prefers-reduced-motion: reduce) {
  .decor-glow, .instagram-glow { animation: none; opacity: .8; }
  .decor-sheen { animation: none; opacity: 0; }
  .shine { animation: none; background-position: 40% center; }
  .manifesto.cinematic .manifesto-line,
  .manifesto.cinematic .manifesto-cta,
  .manifesto-progress-fill { transition: none; }
}

.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.word-split.in-view .word-reveal {
  opacity: 1;
  transform: translateY(0);
}

.hero-texte .produit-divider span {
  transform: scaleX(0);
  transition: transform 0.8s ease;
}

.hero-texte .produit-divider span:first-child { transform-origin: right; }
.hero-texte .produit-divider span:last-child { transform-origin: left; }

.hero-texte.in-view .produit-divider span {
  transform: scaleX(1);
  transition-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  .word-reveal { opacity: 1; transform: none; }
  .hero-texte .produit-divider span { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-item { opacity: 1; transform: none; transition: none; }
}

body {
  background: var(--ivory);
  color: var(--cacao);
  font-family: 'Cormorant Garamond', serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 24px;
  background: var(--bordeaux);
}

.topbar-spacer {
  width: 100%;
}

.topbar-utility {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.utility-social {
  display: flex;
  gap: 12px;
}

.utility-social a {
  color: var(--sand);
  display: flex;
}

.utility-social a:hover {
  color: var(--gold);
}

.utility-region {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--sand);
}

.utility-region:hover {
  color: var(--gold);
}

.utility-region .flag {
  font-size: 13px;
  line-height: 1;
}

.region-select {
  position: relative;
}

.region-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  overflow: hidden;
  min-width: 180px;
  display: none;
  z-index: 20;
}

.region-menu.open { display: block; }

.region-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--cacao);
}

.region-menu button:hover {
  background: var(--ivory);
  color: var(--bordeaux);
}

.topbar-note {
  font-family: 'Playfair Display', serif;
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  color: var(--sand);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  background: #ffffff;
  border-bottom: 1px solid var(--sand);
}

.icon-btn {
  background: none;
  border: none;
  color: var(--cacao);
  cursor: pointer;
  padding: 4px;
  display: flex;
}

.icon-btn:hover {
  color: var(--bordeaux);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-spacer {
  width: 25px;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(33, 27, 23, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 40;
}

.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 90vw);
  background: var(--ivory);
  box-shadow: -12px 0 40px rgba(33,27,23,0.15);
  z-index: 41;
  padding: 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-drawer.open { transform: translateX(0); }

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 18px;
  margin-bottom: 24px;
}

.cart-drawer-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--cacao);
}

.cart-drawer-close {
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: var(--cacao);
  cursor: pointer;
}

.cart-empty {
  text-align: center;
  padding: 60px 10px;
}

.cart-empty p {
  font-size: 17px;
  color: #7a6a58;
  margin-bottom: 20px;
}

.logo-block {
  text-align: center;
}

.logo-the {
  font-family: 'Parisienne', cursive;
  font-size: 20px;
  color: var(--bordeaux);
  line-height: 1;
  text-align: center;
  margin: 0 0 1px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.05em;
  color: var(--bordeaux);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.logo-ring {
  display: inline-block;
  width: 0.62em;
  height: 0.92em;
  margin: 0 0.02em;
  transform: translateY(0.02em) rotate(20deg);
}

.logo-sub {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cacao);
  margin-top: 6px;
}

.mainnav {
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 12px 24px;
  background: #ffffff;
  border-bottom: 1px solid var(--sand);
}

.mainnav a {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bordeaux);
  text-decoration: none;
  padding-bottom: 4px;
}

.mainnav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.mainnav a:hover {
  color: var(--bordeaux);
}

.mainnav a:hover::after {
  transform: scaleX(1);
}

@media (max-width: 540px) {
  .topbar { padding: 8px 20px; }
  .topbar-note { font-size: 9px; }
  header { padding: 16px 20px; }
  .mainnav { gap: 20px; flex-wrap: wrap; }
}
.marquee {
  overflow: hidden;
  background: linear-gradient(180deg, #f3ead9 0%, var(--sand) 55%, #ddcdac 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 3px 8px rgba(74,54,42,0.25);
  padding: 5px 0;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}

.marquee-track span {
  font-family: 'Playfair Display', serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bordeaux);
  white-space: nowrap;
  padding: 0 8px;
}

.marquee-track .marquee-dot {
  color: var(--gold);
  padding: 0 4px;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ambiance {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 92vh;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gris-perle);
}

.ambiance-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 72%;
  filter: blur(7px);
  transform: scale(1.08);
}

.ambiance-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(42% 50% at 50% 56%, rgba(26, 18, 14, .4) 0%, rgba(26, 18, 14, 0) 72%),
    linear-gradient(180deg, rgba(217, 212, 204, .3) 0%, rgba(217, 212, 204, .05) 45%, rgba(74, 54, 42, .42) 100%);
}

.ambiance-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 16px 24px 40px;
}

.ambiance-tagline {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-align: center;
  color: var(--bordeaux);
  max-width: 720px;
  margin: 0;
}

.ambiance-float {
  position: relative;
  z-index: 2;
  width: 55%;
  max-width: 580px;
}

.ambiance-mark {
  position: absolute;
  bottom: 34px;
  left: 34px;
  z-index: 3;
  font-family: 'Parisienne', cursive;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--brun-fonce);
  text-shadow: 0 2px 10px rgba(255,255,255,.35);
  pointer-events: none;
}

.ambiance-img {
  width: 100%;
  display: block;
  border-radius: 50% 50% 6px 6px / 22% 22% 6px 6px;
  border: 1px solid var(--ivory);
  outline: 1px solid rgba(197, 164, 110, .5);
  outline-offset: -2px;
  box-shadow: 0 55px 90px -15px rgba(74, 54, 42, .45), 0 20px 40px -15px rgba(74, 54, 42, .3);
}

@media (max-width: 700px) {
  .ambiance { min-height: 78vh; margin-top: 24px; }
  .ambiance-float { width: 66%; }
  .ambiance-content { gap: 24px; }
}

.hero {
  position: relative;
}

.hero-glow {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px;
}

.hero-texte {
  position: relative;
  text-align: left;
  max-width: 480px;
  padding-right: 40px;
}


.eyebrow {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--bordeaux);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 16px;
}

.accent-word {
  color: var(--bordeaux);
  font-style: italic;
}

.hero-microcopy {
  margin: 10px 0 0;
  font-size: 13px;
  font-style: italic;
  color: #9c8b7d;
}

.hero-texte p {
  margin-bottom: 24px;
  line-height: 1.65;
  max-width: 480px;
  font-size: 18px;
  color: #6b5c4d;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 30px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-trust-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
}

.hero-trust-item p {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--cacao);
}

.hero-eyebrow {
  color: var(--bordeaux);
  margin-bottom: 10px;
}

.cta {
  display: inline-block;
  background: linear-gradient(180deg, #7a2635 0%, var(--bordeaux) 55%, #3a0e17 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 6px 14px rgba(74,20,31,0.4);
  color: var(--ivory);
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 34px;
}

.cta:hover {
  background: #3E0E17;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  order: 2;
  perspective: 1000px;
}

.hero-img-halo {
  display: none;
}

.hero-img {
  width: 100%;
  display: block;
  transform: rotateZ(-2deg);
  transition: transform 0.2s ease-out;
  transform-style: preserve-3d;
}

@media (max-width: 800px) {
  .hero-inner { grid-template-columns: 1fr; gap: 0; margin: 0; padding: 0; }
  .hero-img-wrap { order: 1; max-width: 280px; margin: 0 auto; perspective: none; }
  .hero-img { transform: none; height: auto; }
  .hero-texte {
    order: 2;
    max-width: 100%;
    text-align: center;
    background: var(--ivory);
    padding: 40px 24px;
  }
  .hero-texte::after { display: none; }
  .produit-divider { margin-left: auto; margin-right: auto; }
  .hero-texte p { margin-left: auto; margin-right: auto; }
  .hero-trust { align-items: center; }
}
.ceremonies {
  text-align: center;
  padding: 90px 24px;
  background: var(--sand);
}

.ceremonies h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 500;
  margin: 18px 0 50px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.grid article {
  background: var(--ivory);
  padding: 34px 24px;
  text-align: left;
}

.grid h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--bordeaux);
}

.tag {
  font-style: italic;
  font-size: 15px;
  margin: 8px 0 14px;
  color: var(--bordeaux);
}

.grid article p:last-child {
  font-size: 16.5px;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 44px; }
}

@media (max-width: 540px) {
  .grid { grid-template-columns: 1fr; }
}
.produit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 110px 24px;
  text-align: left;
}

.produit-img {
  width: 100%;
  box-shadow: 0 30px 60px rgba(74, 54, 42, 0.18);
}

.produit-texte h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.25;
}

.produit-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 220px;
  margin: 0 0 16px;
}

.produit-divider span {
  flex: 1;
  height: 1px;
  background: rgba(110, 20, 31, 0.4);
}

.produit-divider i {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.produit-texte p {
  margin-bottom: 14px;
  line-height: 1.65;
  max-width: 480px;
}

.cta-pill {
  display: inline-block;
  background: linear-gradient(180deg, #7a2635 0%, var(--bordeaux) 55%, #3a0e17 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 6px 14px rgba(74,20,31,0.4);
  color: #ffffff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-pill:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 10px 20px rgba(74,20,31,0.45);
}

.cta-pill:hover {
  background: #3E0E17;
  color: var(--ivory);
}

@media (max-width: 800px) {
  .produit { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .produit-divider { margin-left: auto; margin-right: auto; }
  .produit-texte p { margin-left: auto; margin-right: auto; }
}

.personnalisation {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  padding: 100px 24px;
  border-top: 1px solid var(--sand);
}

.personnalisation::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.personnalisation::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(55% 55% at 50% 0%, rgba(197, 164, 110, .12) 0%, rgba(197, 164, 110, 0) 70%);
}

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

.personnalisation h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 500;
  margin: 16px 0 60px;
}

.personnalisation-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
  text-align: left;
}

.personnalisation-image {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  padding: 56px;
  background: #FBF9F4;
  border-radius: 6px;
}

.personnalisation-image img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 30px 40px rgba(60, 45, 30, 0.18));
}

.marker {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  color: #ffffff;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.35), 0 0 0 3px rgba(255,255,255,0.85), 0 3px 8px rgba(0,0,0,0.22);
}

.marker::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--ring-color, #fff);
  opacity: 0.55;
  animation: marker-pulse 2.6s ease-out infinite;
}

@keyframes marker-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(2); opacity: 0; }
}

.marker-1 { background: var(--bordeaux); --ring-color: var(--bordeaux); }
.marker-2 { background: var(--gold); --ring-color: var(--gold); }
.marker-3 { background: var(--cacao); --ring-color: var(--cacao); }

.personnalisation-legende {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.personnalisation-cta {
  align-self: flex-start;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.personnalisation-cta .arrow {
  transition: transform 0.2s ease;
}

.personnalisation-cta:hover .arrow {
  transform: translateX(4px);
}

@media (max-width: 800px) {
  .personnalisation-cta { align-self: center; }
}

.legende-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.dot-colors {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
  border-radius: 50%;
  background: #FBF9F4;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.5), 0 3px 8px rgba(74,54,42,0.18);
}

.dot-colors span {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #FBF9F4, 0 1px 3px rgba(0,0,0,0.12);
}

.dot-colors span:nth-child(1) { background: var(--bordeaux); top: 3px; left: 8px; z-index: 3; }
.dot-colors span:nth-child(2) { background: var(--cacao); bottom: 3px; left: 2px; z-index: 2; }
.dot-colors span:nth-child(3) { background: var(--brun-clair); bottom: 3px; right: 2px; z-index: 1; }

.dot {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: #ffffff;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.3), 0 3px 8px rgba(74,54,42,0.18);
}

.dot-1 { background: linear-gradient(150deg, #7a2635 0%, var(--bordeaux) 100%); }
.dot-3 { background: linear-gradient(150deg, #6b5645 0%, var(--cacao) 100%); }

.legende-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}

.legende-item p {
  font-size: 15px;
  line-height: 1.5;
  color: #6b5c4d;
}

@media (max-width: 800px) {
  .personnalisation-grid { grid-template-columns: 1fr; text-align: center; }
  .legende-item { text-align: left; }
}

.avantages {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 46px 24px;
  background: linear-gradient(160deg, #6e2f3b 0%, var(--bordeaux) 45%, #340c14 100%);
  border-top: 1px solid rgba(197, 164, 110, .3);
  border-bottom: 1px solid rgba(197, 164, 110, .3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), inset 0 12px 24px -18px rgba(0, 0, 0, .5);
}

.avantages::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.avantages::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(45% 90% at 50% 0%, rgba(197, 164, 110, .16) 0%, rgba(197, 164, 110, 0) 70%);
  animation: decorBreathe 9s ease-in-out infinite;
}

.avantage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 6px 34px;
}

.avantage:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, transparent, rgba(197, 164, 110, .55), transparent);
}

.avantage-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(155deg, #7a3644 0%, var(--bordeaux) 55%, #2c0a10 100%);
  border: 1px solid rgba(197, 164, 110, .45);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .2), inset 0 -3px 5px rgba(0, 0, 0, .4), 0 6px 14px -4px rgba(0, 0, 0, .5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.avantage:hover .avantage-badge {
  transform: translateY(-3px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .25), inset 0 -3px 5px rgba(0, 0, 0, .4), 0 12px 20px -6px rgba(0, 0, 0, .55);
}

.avantage-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .45));
}

.avantage p {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--sand);
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
}

@media (max-width: 700px) {
  .avantage { padding: 4px 20px; }
  .avantage:not(:first-child)::before { display: none; }
}

.wishlist {
  text-align: center;
  padding: 100px 24px;
  background: var(--ivory);
}

.wishlist-icon {
  width: 26px;
  height: 26px;
  color: var(--gold);
  margin-bottom: 6px;
}

.wishlist h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  margin: 16px 0 14px;
}

.wishlist-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 160px;
  margin: 0 auto 26px;
}

.wishlist-divider span {
  flex: 1;
  height: 1px;
  background: rgba(110, 20, 31, .3);
}

.wishlist-divider i {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.wishlist-texte {
  max-width: 480px;
  margin: 0 auto 32px;
  font-style: italic;
}

.cta-outline {
  background: transparent;
  color: var(--bordeaux);
  border: 1px solid var(--bordeaux);
  box-shadow: 0 4px 10px rgba(74,20,31,0.15);
}

.cta-outline:hover {
  background: var(--bordeaux);
  color: var(--ivory);
}

.instagram {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  padding: 120px 24px;
  background: linear-gradient(135deg, var(--bordeaux) 0%, #2e0a10 100%);
  color: var(--ivory);
}

.instagram::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.instagram-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(55% 45% at 50% 30%, rgba(197, 164, 110, .18) 0%, rgba(197, 164, 110, 0) 70%);
  animation: decorBreathe 9s ease-in-out infinite;
}

.instagram > * {
  position: relative;
  z-index: 1;
}

.instagram-head {
  max-width: 600px;
  margin: 0 auto;
}

.instagram-icon {
  width: 26px;
  height: 26px;
  color: var(--gold);
  opacity: .85;
  margin-bottom: 14px;
}

.instagram h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  margin: 16px 0 14px;
  color: var(--ivory);
}

.eyebrow-light {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}

.instagram-texte {
  max-width: 480px;
  margin: 0 auto 8px;
  font-style: italic;
  color: var(--sand);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 920px;
  margin: 48px auto 44px;
}

.instagram-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 640px;
  gap: 18px;
}

.instagram-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0,0,0,.35);
  transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease;
}

.instagram-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,3,5,0) 55%, rgba(14,3,5,.55) 100%);
  opacity: 0;
  transition: opacity .35s ease;
}

.instagram-tile-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  opacity: 0;
  transition: opacity .35s ease;
}

.instagram-tile-hover svg {
  width: 22px;
  height: 22px;
}

.instagram-tile:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 34px rgba(0,0,0,.45);
}

.instagram-tile:hover::after,
.instagram-tile:hover .instagram-tile-hover {
  opacity: 1;
}

.instagram-tile-brand {
  border: 1px solid rgba(197, 164, 110, .5);
}

@media (max-width: 900px) {
  .instagram-grid { grid-template-columns: repeat(3, 1fr); max-width: 460px; }
}

@media (max-width: 480px) {
  .instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .instagram-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 8px; max-width: 100%; }
}

.instagram-cta {
  margin-top: 4px;
}

.histoire {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 24px;
}

.histoire-img-wrap {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  aspect-ratio: 1 / 1;
}

.histoire-img {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: calc(100% + 60px);
  object-fit: cover;
  will-change: transform;
}

.histoire h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 500;
  margin: 16px 0 22px;
}

.histoire-texte p { margin-bottom: 14px; line-height: 1.6; }

.signature {
  font-style: italic;
  color: var(--bordeaux);
}

@media (max-width: 800px) {
  .histoire { grid-template-columns: 1fr; gap: 30px; }
}
.rejoindre {
  text-align: center;
  padding: 100px 24px;
  background: var(--sand);
}

.rejoindre h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  margin: 16px 0 14px;
}

.rejoindre-texte {
  max-width: 480px;
  margin: 0 auto 36px;
  font-style: italic;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 0 auto 40px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
  padding: 14px 6px;
  background: linear-gradient(180deg, #ffffff 0%, #f3ede2 100%);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), inset 0 -2px 4px rgba(74,54,42,0.08), 0 10px 20px rgba(74,20,31,0.18), 0 3px 6px rgba(74,20,31,0.12);
}

.countdown-num {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--bordeaux);
  line-height: 1;
}

.countdown-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a7a68;
  margin-top: 6px;
}

.countdown-sep {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 18px;
}

@media (max-width: 600px) {
  .countdown { gap: 8px; }
  .countdown-item { min-width: 52px; padding: 10px 4px; }
  .countdown-num { font-size: 22px; }
}

.signup {
  display: flex;
  justify-content: center;
}

.signup input {
  border: 1px solid var(--cacao);
  background: var(--ivory);
  padding: 15px 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  width: 280px;
}

.signup button {
  border: none;
  background: var(--bordeaux);
  color: var(--ivory);
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0 26px;
  cursor: pointer;
}

.signup button:hover { background: #3E0E17; }

footer {
  background: var(--bordeaux);
  color: var(--sand);
  text-align: center;
  padding: 44px 24px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.3em;
  font-size: 16px;
  margin-bottom: 12px;
}

.launch {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

footer a {
  color: var(--sand);
  font-style: italic;
  text-decoration: none;
}

footer a:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .signup { flex-direction: column; align-items: center; gap: 10px; }
  .signup button { padding: 14px 28px; }
}
.rejoindre iframe {
  max-width: 480px;
  margin: 0 auto;
  display: block;
}

/* ---------- Page Produit ---------- */

.mainnav a.mainnav-active { color: var(--bordeaux); }
.mainnav a.mainnav-active::after { transform: scaleX(1); }

.prod-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 40px 110px;
}

.prod-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.prod-main-link {
  display: block;
  width: 100%;
  max-width: 420px;
  text-decoration: none;
}

.prod-main-image {
  position: relative;
  overflow: hidden;
  border-radius: 50% 50% 6px 6px / 22% 22% 6px 6px;
  border: 1px solid var(--ivory);
  outline: 1px solid rgba(197, 164, 110, .5);
  outline-offset: -2px;
  box-shadow: 0 40px 70px -18px rgba(74, 54, 42, .4), 0 16px 32px -14px rgba(74, 54, 42, .28);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.prod-main-link:hover .prod-main-image {
  transform: translateY(-4px);
  box-shadow: 0 48px 80px -16px rgba(74, 54, 42, .48), 0 20px 38px -14px rgba(74, 54, 42, .32);
}

.prod-main-image img {
  width: 100%;
  display: block;
}

.prod-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 54, 42, .82);
  color: var(--ivory);
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: 30px;
  backdrop-filter: blur(3px);
}

.prod-hint .arrow { transition: transform 0.25s ease; }
.prod-main-link:hover .prod-hint .arrow { transform: translateX(4px); }

.prod-thumbs {
  display: flex;
  gap: 14px;
}

.prod-thumb {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid transparent;
  outline: 1px solid var(--sand);
  outline-offset: 2px;
  cursor: pointer;
  padding: 0;
  transition: outline-color 0.25s ease, transform 0.25s ease;
}

.prod-thumb:hover { transform: translateY(-2px); }

.prod-thumb.active {
  border-color: var(--ivory);
  outline-color: var(--gold);
}

.prod-info { max-width: 480px; }

.prod-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 500;
  color: var(--cacao);
  margin: 6px 0 10px;
}

.prod-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--bordeaux);
  margin-bottom: 18px;
}

.prod-desc {
  font-size: 18px;
  line-height: 1.65;
  color: #6b5c4d;
  margin-bottom: 22px;
}

.prod-specs {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prod-specs li {
  position: relative;
  padding-left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--cacao);
}

.prod-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.prod-info .hero-microcopy { margin-top: 12px; }

@media (max-width: 800px) {
  .prod-hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 50px 24px 70px;
    text-align: center;
  }
  .prod-info { max-width: 100%; }
  .prod-info .produit-divider,
  .prod-specs { margin-left: auto; margin-right: auto; }
  .prod-specs li { text-align: left; }
}