/* ─────────────────────────────────────────────────────────
   L'ESSENCE DU CHIC — V2 · DARK EDITORIAL
   Palette : onyx, obsidienne, cramoisi, or vieilli
   ───────────────────────────────────────────────────────── */

:root {
  --v2-void: #050505;
  --v2-onyx: #0B0B0D;
  --v2-coal: #141418;
  --v2-ash: #1E1E22;
  --v2-smoke: #2A2A30;
  --v2-bone: #E9E6DF;
  --v2-bone-dim: #9E9B95;
  --v2-bone-soft: #787570;
  /* Mode "Or" : tous les accents (anciens rouges) deviennent or vieilli.
     On laisse les noms de variables --v2-ember et --v2-blood pour ne pas
     casser le reste du CSS, mais leurs valeurs sont passées en or. */
  --v2-blood: #8A6D4D;
  --v2-ember: #B8956A;
  --v2-gold: #B8956A;
  --v2-gold-dim: #6B563F;

  --v2-hair: rgba(233, 230, 223, 0.08);
  --v2-hair-strong: rgba(233, 230, 223, 0.18);

  --v2-ff-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --v2-ff-italic: 'Italiana', 'Cormorant Garamond', serif;
  --v2-ff-mono: 'JetBrains Mono', 'Courier New', monospace;
  --v2-ff-sans: 'Inter', -apple-system, sans-serif;

  --v2-tr-micro: 0.38em;
  --v2-tr-wide: 0.22em;
}

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

html.v2, body.v2 {
  background: var(--v2-void);
  color: var(--v2-bone);
  font-family: var(--v2-ff-sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.v2 {
  font-size: 15px;
  line-height: 1.7;
}

.v2 img { display: block; max-width: 100%; }
.v2 a { color: inherit; text-decoration: none; }
.v2 button { font-family: inherit; background: none; border: none; color: inherit; cursor: pointer; }

/* ── Film grain overlay ──────────────────────────────────── */
.v2-grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.12;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.9'/></svg>");
}

/* ── Vignette ────────────────────────────────────────────── */
.v2-vignette {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 5;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.45) 100%);
}

/* ── Typography ──────────────────────────────────────────── */
.v2 .display {
  font-family: var(--v2-ff-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.v2 .title {
  font-family: var(--v2-ff-display);
  font-weight: 300;
  font-size: clamp(42px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.v2 .title em { font-style: italic; font-family: var(--v2-ff-italic); }
.v2 .sect {
  font-family: var(--v2-ff-display);
  font-weight: 300;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.v2 .eyebrow {
  font-family: var(--v2-ff-mono);
  font-size: 10px;
  letter-spacing: var(--v2-tr-micro);
  text-transform: uppercase;
  color: var(--v2-gold);
}
.v2 .lead {
  font-family: var(--v2-ff-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  color: var(--v2-bone-dim);
}

/* ── Navigation ──────────────────────────────────────────── */
.v2-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: 80px;
  z-index: 100;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .5s ease, border-color .5s ease;
  border-bottom: 1px solid transparent;
}
.v2-nav.scrolled {
  background: rgba(5, 5, 5, 0.75);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: var(--v2-hair);
}
.v2-nav-mono {
  font-family: 'Bodoni Moda', 'Didot', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 8px;
}
.v2-nav-mono em { font-style: italic; font-weight: 400; }
.v2-nav-mono .tick {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--v2-ember);
  animation: v2-pulse 2.4s ease-in-out infinite;
}
@keyframes v2-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); box-shadow: 0 0 0 0 rgba(184, 149, 106,0); }
  50% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 16px 2px rgba(184, 149, 106,0.4); }
}
.v2-nav-right {
  display: flex; align-items: center; gap: 32px;
}
.v2-nav-index {
  font-family: var(--v2-ff-mono);
  font-size: 10px;
  letter-spacing: var(--v2-tr-wide);
  text-transform: uppercase;
  color: var(--v2-bone-dim);
  display: flex; align-items: center; gap: 10px;
}
.v2-nav-index .slash { color: var(--v2-gold); }
.v2-menu-btn {
  font-family: var(--v2-ff-mono);
  font-size: 10px;
  letter-spacing: var(--v2-tr-micro);
  text-transform: uppercase;
  padding: 14px 22px;
  border: 1px solid var(--v2-bone-soft);
  background: rgba(233,230,223,0.02);
  display: flex; align-items: center; gap: 12px;
  transition: border-color .3s ease, background .3s ease;
}
.v2-menu-btn:hover { border-color: var(--v2-ember); background: rgba(184, 149, 106,0.08); }
.v2-menu-btn .lines { display: inline-flex; flex-direction: column; gap: 3px; }
.v2-menu-btn .lines span { width: 14px; height: 1px; background: currentColor; }

/* Drawer menu */
.v2-drawer {
  position: fixed; inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity .6s ease;
}
.v2-drawer.open { opacity: 1; pointer-events: auto; }
.v2-drawer-bg {
  position: absolute; inset: 0;
  background: rgba(5, 5, 5, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.v2-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(560px, 100vw);
  background: var(--v2-onyx);
  border-left: 1px solid var(--v2-hair-strong);
  padding: 100px 64px 40px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .7s cubic-bezier(.7, 0, .2, 1);
  overflow-y: auto;
}
.v2-drawer.open .v2-drawer-panel { transform: translateX(0); }
.v2-drawer-close {
  position: absolute; top: 28px; right: 40px;
  font-family: var(--v2-ff-mono);
  font-size: 11px;
  letter-spacing: var(--v2-tr-wide);
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid var(--v2-bone-soft);
  transition: border-color .3s ease;
}
.v2-drawer-close:hover { border-color: var(--v2-ember); color: var(--v2-ember); }

.v2-drawer ol {
  list-style: none;
  counter-reset: menu;
  flex: 1;
}
.v2-drawer li {
  counter-increment: menu;
  border-bottom: 1px solid var(--v2-hair);
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .6s ease, transform .6s ease;
}
.v2-drawer.open li { opacity: 1; transform: translateX(0); }
.v2-drawer.open li:nth-child(1) { transition-delay: .15s; }
.v2-drawer.open li:nth-child(2) { transition-delay: .2s; }
.v2-drawer.open li:nth-child(3) { transition-delay: .25s; }
.v2-drawer.open li:nth-child(4) { transition-delay: .3s; }
.v2-drawer.open li:nth-child(5) { transition-delay: .35s; }
.v2-drawer.open li:nth-child(6) { transition-delay: .4s; }
.v2-drawer.open li:nth-child(7) { transition-delay: .45s; }
.v2-drawer.open li:nth-child(8) { transition-delay: .5s; }

.v2-drawer li a {
  display: flex;
  align-items: baseline;
  gap: 28px;
  padding: 24px 0;
  font-family: var(--v2-ff-display);
  font-size: 44px;
  font-weight: 300;
  letter-spacing: -0.01em;
  position: relative;
  transition: color .3s ease, padding-left .4s cubic-bezier(.2,.7,.2,1);
}
.v2-drawer li a:hover { color: var(--v2-ember); padding-left: 20px; font-style: italic; }
.v2-drawer li a::before {
  content: '0' counter(menu);
  font-family: var(--v2-ff-mono);
  font-size: 10px;
  letter-spacing: var(--v2-tr-wide);
  color: var(--v2-gold);
  min-width: 40px;
}

.v2-drawer-foot {
  padding-top: 32px;
  border-top: 1px solid var(--v2-hair);
  font-family: var(--v2-ff-mono);
  font-size: 10px;
  letter-spacing: var(--v2-tr-wide);
  text-transform: uppercase;
  color: var(--v2-bone-dim);
  display: flex; justify-content: space-between;
}

/* ── HERO ────────────────────────────────────────────────── */
.v2-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* padding-bottom augmenté pour laisser de la place aux CTA absolus
     en bas (Répondre / Programme) sans qu'ils ne chevauchent la meta */
  padding: 120px 48px 180px;
  gap: 48px;
  align-items: end;
}
.v2-hero-cta {
  position: absolute;
  bottom: 48px;
  left: 48px;
  z-index: 3;
  display: flex; gap: 16px;
}

.v2-hero-scroll {
  position: absolute;
  bottom: 48px; right: 48px;
  z-index: 3;
  font-family: var(--v2-ff-mono);
  font-size: 9px;
  letter-spacing: var(--v2-tr-wide);
  text-transform: uppercase;
  color: var(--v2-bone-dim);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  writing-mode: vertical-rl;
}
.v2-hero-scroll .line {
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, var(--v2-gold), transparent);
  animation: v2-scroll 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes v2-scroll {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.3); opacity: 0.3; }
}

/* ── Buttons ─────────────────────────────────────────────── */
.v2-btn {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 18px 28px;
  font-family: var(--v2-ff-mono);
  font-size: 10px;
  letter-spacing: var(--v2-tr-micro);
  text-transform: uppercase;
  border: 1px solid var(--v2-bone);
  color: var(--v2-bone);
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color .3s ease, border-color .3s ease;
}
.v2-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--v2-bone);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
  z-index: -1;
}
.v2-btn:hover { color: var(--v2-void); border-color: var(--v2-bone); }
.v2-btn:hover::before { transform: translateY(0); }
.v2-btn.blood { border-color: var(--v2-ember); color: var(--v2-ember); }
.v2-btn.blood::before { background: var(--v2-ember); }
.v2-btn.blood:hover { color: var(--v2-void); }
.v2-btn.filled { background: var(--v2-ember); border-color: var(--v2-ember); color: var(--v2-bone); }
.v2-btn.filled::before { background: var(--v2-void); }
.v2-btn.filled:hover { color: var(--v2-bone); }
.v2-btn .dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

/* ── Countdown ───────────────────────────────────────────── */
.v2-countdown-sect {
  /* Padding réduit (avant : 160px en haut/bas) car on a retiré le titre
     et l'intro, donc les chiffres sont maintenant le seul contenu. */
  padding: 100px 48px;
  border-top: 1px solid var(--v2-hair);
  position: relative;
}
.v2-countdown-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: baseline;
  margin-bottom: 80px;
}
.v2-countdown-head .idx {
  font-family: var(--v2-ff-mono);
  font-size: 10px;
  letter-spacing: var(--v2-tr-wide);
  color: var(--v2-gold);
}
.v2-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--v2-hair);
}
.v2-countdown-unit {
  padding: 56px 24px;
  border-right: 1px solid var(--v2-hair);
  position: relative;
  overflow: hidden;
}
.v2-countdown-unit:last-child { border-right: none; }
.v2-countdown-unit::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: var(--v2-gold);
  transform-origin: left;
  transform: scaleX(0);
  animation: v2-line-in 1.2s cubic-bezier(.7,0,.2,1) forwards;
}
.v2-countdown-unit:nth-child(2)::before { animation-delay: 0.1s; }
.v2-countdown-unit:nth-child(3)::before { animation-delay: 0.2s; }
.v2-countdown-unit:nth-child(4)::before { animation-delay: 0.3s; }
@keyframes v2-line-in { to { transform: scaleX(1); } }

.v2-countdown-val {
  font-family: var(--v2-ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(64px, 10vw, 140px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--v2-bone);
  display: block;
  transition: color .3s ease;
}
.v2-countdown-unit:hover .v2-countdown-val { color: var(--v2-ember); }
.v2-countdown-lab {
  margin-top: 24px;
  font-family: var(--v2-ff-mono);
  font-size: 10px;
  letter-spacing: var(--v2-tr-micro);
  text-transform: uppercase;
  color: var(--v2-bone-dim);
}

/* ── Section wrappers ────────────────────────────────────── */
.v2-section {
  padding: 140px 48px;
  border-top: 1px solid var(--v2-hair);
  position: relative;
}
.v2-section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: baseline;
  margin-bottom: 96px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--v2-hair);
}
.v2-section-num {
  font-family: var(--v2-ff-display);
  font-style: italic;
  font-size: 48px;
  color: var(--v2-gold);
  line-height: 1;
}
.v2-section-label {
  font-family: var(--v2-ff-mono);
  font-size: 10px;
  letter-spacing: var(--v2-tr-wide);
  text-transform: uppercase;
  color: var(--v2-bone-dim);
  text-align: right;
}

/* ── Programme timeline ──────────────────────────────────── */
.v2-program {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--v2-hair);
}
.v2-program-left {
  padding: 48px 48px 48px 0;
  border-right: 1px solid var(--v2-hair);
}
.v2-program-right {
  padding: 48px 0 48px 48px;
  position: sticky;
  top: 100px;
  align-self: start;
  height: fit-content;
}
.v2-event {
  padding: 40px 0;
  border-bottom: 1px solid var(--v2-hair);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  align-items: start;
  transition: padding-left .4s cubic-bezier(.2,.7,.2,1);
  position: relative;
}
.v2-event::before {
  content: '';
  position: absolute;
  left: -48px; top: 50%;
  width: 0; height: 1px;
  background: var(--v2-ember);
  transition: width .4s cubic-bezier(.2,.7,.2,1);
}
.v2-event:hover { padding-left: 20px; }
.v2-event:hover::before { width: 40px; }
.v2-event:hover .v2-event-title { color: var(--v2-ember); font-style: italic; }
.v2-event:last-child { border-bottom: none; }
.v2-event-time {
  font-family: var(--v2-ff-display);
  font-style: italic;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--v2-bone);
}
.v2-event-time sup {
  font-size: 14px;
  font-family: var(--v2-ff-mono);
  font-style: normal;
  color: var(--v2-gold);
  margin-left: 4px;
  vertical-align: top;
}
.v2-event-title {
  font-family: var(--v2-ff-display);
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 6px;
  line-height: 1.1;
  transition: color .3s ease, font-style .3s ease;
}
.v2-event-place { color: var(--v2-bone-dim); font-size: 14px; font-style: italic; font-family: var(--v2-ff-display); }
.v2-event-addr { color: var(--v2-bone-soft); font-size: 12px; margin-top: 4px; font-family: var(--v2-ff-mono); letter-spacing: 0.04em; text-decoration: none; display: inline-block; transition: color .25s ease; }
a.v2-event-addr:hover { color: var(--v2-gold); }

/* Lien "Voir le lieu →" — ouvre Google Maps dans un nouvel onglet
   Note : on utilise a.v2-event-link pour battre la spécificité de .v2 a */
a.v2-event-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 6px 0;
  font-family: var(--v2-ff-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--v2-gold);
  text-decoration: none;
  border-bottom: 1px solid var(--v2-gold-dim);
  align-self: flex-start;
  width: max-content;
  transition: color .25s ease, border-color .25s ease, gap .25s ease;
}
a.v2-event-link:hover {
  color: var(--v2-bone);
  border-color: var(--v2-bone);
  gap: 12px;
}
.v2-event-link-arrow {
  font-size: 12px;
  line-height: 1;
  transition: transform .3s ease;
}
a.v2-event-link:hover .v2-event-link-arrow {
  transform: translateX(2px);
}
/* Cible tactile mobile */
@media (max-width: 600px) {
  a.v2-event-link { font-size: 9px; padding: 8px 0; margin-top: 10px; }
}

/* Map panel (right side) */
.v2-map {
  aspect-ratio: 3/4;
  background: var(--v2-onyx);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--v2-hair-strong);
}
.v2-map-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.v2-map-cap {
  position: absolute;
  left: 20px; top: 20px; right: 20px;
  display: flex; justify-content: space-between;
  font-family: var(--v2-ff-mono);
  font-size: 9px;
  letter-spacing: var(--v2-tr-wide);
  text-transform: uppercase;
  color: var(--v2-bone-dim);
  z-index: 2;
}
.v2-map-cap .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--v2-ember); animation: v2-pulse 2s ease-in-out infinite; }
.v2-map-bottom {
  position: absolute;
  left: 20px; bottom: 20px; right: 20px;
  z-index: 2;
}
.v2-map-bottom .name {
  font-family: var(--v2-ff-display);
  font-style: italic;
  font-size: 28px;
  color: var(--v2-bone);
  margin-bottom: 4px;
}
.v2-map-bottom .coord {
  font-family: var(--v2-ff-mono);
  font-size: 10px;
  letter-spacing: var(--v2-tr-wide);
  color: var(--v2-gold);
}

/* ── Dress code ──────────────────────────────────────────── */
.v2-dress {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--v2-hair);
}
.v2-dress-col {
  padding: 64px 48px;
  background: var(--v2-void);
}
.v2-dress-col.avoid { background: var(--v2-onyx); }
.v2-dress-col h3 {
  font-family: var(--v2-ff-display);
  font-style: italic;
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 12px;
  display: flex; align-items: baseline; gap: 18px;
}
.v2-dress-col h3 .num {
  font-family: var(--v2-ff-mono);
  font-size: 12px;
  letter-spacing: var(--v2-tr-wide);
  font-style: normal;
  color: var(--v2-gold);
}
.v2-dress-col p {
  color: var(--v2-bone-dim);
  max-width: 460px;
  margin-bottom: 48px;
  font-family: var(--v2-ff-display);
  font-style: italic;
  font-size: 18px;
}

.v2-dress-palette {
  display: flex; gap: 12px;
  margin-bottom: 48px;
}
.v2-dress-palette .sw {
  width: 48px; height: 72px;
  position: relative;
  border: 1px solid var(--v2-hair-strong);
}
.v2-dress-palette .sw::after {
  content: attr(data-name);
  position: absolute; top: calc(100% + 8px); left: 0;
  font-family: var(--v2-ff-mono);
  font-size: 8px;
  letter-spacing: var(--v2-tr-wide);
  text-transform: uppercase;
  color: var(--v2-bone-dim);
  white-space: nowrap;
}

.v2-dress-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.v2-dress-photo {
  aspect-ratio: 3/4;
  background: var(--v2-coal);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--v2-hair);
}
.v2-dress-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.15) brightness(0.85);
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}
.v2-dress-photo:hover img { transform: scale(1.06); filter: grayscale(0.5) contrast(1.15) brightness(0.95); }
.v2-dress-photo.avoid img { filter: grayscale(1) contrast(1.2) brightness(0.4); }
.v2-dress-photo.avoid::after {
  content: '';
  position: absolute; top: 50%; left: 10%; right: 10%;
  height: 1px; background: var(--v2-ember);
  transform: rotate(-8deg);
  box-shadow: 0 0 12px var(--v2-ember);
}
.v2-dress-photo figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 14px;
  font-family: var(--v2-ff-mono);
  font-size: 9px;
  letter-spacing: var(--v2-tr-wide);
  text-transform: uppercase;
  color: var(--v2-bone);
  background: linear-gradient(to top, rgba(5,5,5,0.85), transparent);
}

/* ── Infos · hotels/shuttle ──────────────────────────────── */
.v2-hotels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--v2-hair);
  margin-bottom: 64px;
}
.v2-hotel {
  padding: 32px;
  background: var(--v2-void);
  display: flex; flex-direction: column;
  transition: background .4s ease;
}
.v2-hotel:hover { background: var(--v2-onyx); }
.v2-hotel-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--v2-coal);
  margin: -32px -32px 28px;
  border-bottom: 1px solid var(--v2-hair);
  position: relative;
}
.v2-hotel-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.8) contrast(1.1);
  transition: transform 1s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}
.v2-hotel:hover .v2-hotel-img img { transform: scale(1.08); filter: grayscale(0.6) brightness(0.95) contrast(1.15); }
.v2-hotel-tag {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--v2-ff-mono);
  font-size: 9px;
  letter-spacing: var(--v2-tr-wide);
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--v2-bone);
  color: var(--v2-bone);
  background: rgba(5,5,5,0.5);
}
.v2-hotel-stars {
  font-family: var(--v2-ff-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--v2-gold);
  margin-bottom: 10px;
}
.v2-hotel-name {
  font-family: var(--v2-ff-display);
  font-style: italic;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 6px;
}
.v2-hotel-dist {
  font-family: var(--v2-ff-mono);
  font-size: 10px;
  letter-spacing: var(--v2-tr-wide);
  text-transform: uppercase;
  color: var(--v2-bone-dim);
  margin-bottom: 16px;
}
.v2-hotel-desc { color: var(--v2-bone-dim); font-size: 13px; line-height: 1.65; flex: 1; font-style: italic; font-family: var(--v2-ff-display); font-size: 15px; }
.v2-hotel-meta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--v2-hair);
  display: flex; justify-content: space-between; align-items: center;
}
.v2-hotel-price { font-family: var(--v2-ff-display); font-style: italic; font-size: 28px; color: var(--v2-bone); }
.v2-hotel-price span { font-family: var(--v2-ff-mono); font-style: normal; font-size: 9px; letter-spacing: var(--v2-tr-wide); text-transform: uppercase; color: var(--v2-bone-dim); margin-left: 8px; }
.v2-hotel-link {
  font-family: var(--v2-ff-mono);
  font-size: 10px;
  letter-spacing: var(--v2-tr-wide);
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--v2-bone);
  transition: color .3s ease, border-color .3s ease;
}
.v2-hotel-link:hover { color: var(--v2-ember); border-color: var(--v2-ember); }

/* Bandeau Airbnb — bloc entièrement cliquable, hover animé
   Cohérent avec .v2-warning (même padding, même fond) mais filet doré au lieu d'ember */
.v2-airbnb {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--v2-coal);
  border-left: 2px solid var(--v2-gold);
  padding: 36px 48px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  transition: background .35s ease, padding-left .35s ease, border-left-width .35s ease;
}
.v2-airbnb:hover {
  background: var(--v2-onyx);
  padding-left: 56px;
  border-left-width: 4px;
}
.v2-airbnb-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}
.v2-airbnb-lead {
  font-family: var(--v2-ff-display);
  font-style: italic;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--v2-bone);
  max-width: 520px;
}
.v2-airbnb-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--v2-ff-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--v2-gold);
  white-space: nowrap;
  transition: gap .35s ease, color .35s ease;
}
.v2-airbnb:hover .v2-airbnb-cta { gap: 26px; color: var(--v2-bone); }
.v2-airbnb-arrow {
  width: 48px; height: 1px; background: var(--v2-gold);
  position: relative;
  transition: background .35s ease, width .35s ease;
}
.v2-airbnb-arrow::after {
  content: "";
  position: absolute; right: -1px; top: 50%;
  width: 9px; height: 9px;
  border-top: 1px solid var(--v2-gold);
  border-right: 1px solid var(--v2-gold);
  transform: translateY(-50%) rotate(45deg);
  transition: border-color .35s ease;
}
.v2-airbnb:hover .v2-airbnb-arrow { background: var(--v2-bone); width: 64px; }
.v2-airbnb:hover .v2-airbnb-arrow::after { border-color: var(--v2-bone); }

.v2-warning {
  padding: 40px 48px;
  background: var(--v2-coal);
  border-left: 2px solid var(--v2-ember);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.v2-warning .mk {
  width: 64px; height: 64px;
  border: 1px solid var(--v2-ember);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--v2-ff-display);
  font-style: italic;
  font-size: 32px;
  color: var(--v2-ember);
}
.v2-warning h4 {
  font-family: var(--v2-ff-display);
  font-style: italic;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 6px;
}
.v2-warning p { color: var(--v2-bone-dim); font-size: 14px; line-height: 1.7; max-width: 720px; }

/* ── RSVP ────────────────────────────────────────────────── */
.v2-rsvp {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 48px;
}
.v2-rsvp h2 { margin-top: 24px; }
.v2-rsvp-lead { margin-top: 24px; max-width: 520px; margin-left: auto; margin-right: auto; }
/* Toutes les étapes du RSVP sont centrées explicitement */
#v2-rsvp-search-step {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
#v2-rsvp-search-step .title,
#v2-rsvp-search-step .eyebrow {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.v2-rsvp-form, .v2-rsvp-confirm {
  margin-left: auto;
  margin-right: auto;
}
.v2-rsvp-search {
  width: 100%;
  max-width: 640px;
  margin-top: 56px;
  position: relative;
}
.v2-rsvp-input {
  width: 100%;
  padding: 22px 0;
  font-family: var(--v2-ff-display);
  font-style: italic;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--v2-bone-soft);
  text-align: center;
  color: var(--v2-bone);
  outline: none;
  transition: border-color .3s ease;
}
.v2-rsvp-input::placeholder { color: var(--v2-bone-soft); }
.v2-rsvp-input:focus { border-bottom-color: var(--v2-ember); }
.v2-rsvp-hint {
  margin-top: 18px;
  font-family: var(--v2-ff-mono);
  font-size: 10px;
  letter-spacing: var(--v2-tr-wide);
  text-transform: uppercase;
  color: var(--v2-gold);
}
.v2-rsvp-sug {
  margin-top: 24px;
  border: 1px solid var(--v2-hair-strong);
  background: var(--v2-onyx);
  text-align: left;
  max-height: 320px;
  overflow-y: auto;
}
.v2-rsvp-sug-row {
  padding: 20px 28px;
  border-bottom: 1px solid var(--v2-hair);
  display: flex; justify-content: space-between; align-items: center;
  transition: background .25s ease, padding-left .3s cubic-bezier(.2,.7,.2,1);
  position: relative;
}
.v2-rsvp-sug-row:last-child { border-bottom: none; }
.v2-rsvp-sug-row::before {
  content: '→';
  position: absolute;
  left: 8px; top: 50%;
  transform: translateY(-50%) translateX(-16px);
  color: var(--v2-ember);
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  font-family: var(--v2-ff-mono);
}
.v2-rsvp-sug-row:hover { background: rgba(184, 149, 106,0.06); padding-left: 40px; }
.v2-rsvp-sug-row:hover::before { opacity: 1; transform: translateY(-50%) translateX(0); }
.v2-rsvp-sug-name { font-family: var(--v2-ff-display); font-style: italic; font-size: 24px; }
.v2-rsvp-sug-meta { font-family: var(--v2-ff-mono); font-size: 10px; letter-spacing: var(--v2-tr-wide); text-transform: uppercase; color: var(--v2-bone-dim); }

.v2-rsvp-form {
  width: 100%;
  max-width: 720px;
  text-align: left;
  padding: 48px 0;
}
.v2-rsvp-form-head {
  text-align: center;
  padding-bottom: 32px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--v2-hair);
}
.v2-rsvp-form-head h3 {
  font-family: var(--v2-ff-display);
  font-style: italic;
  font-size: 56px;
  font-weight: 300;
}
.v2-rsvp-field { margin-bottom: 40px; }
.v2-rsvp-field label {
  display: block;
  font-family: var(--v2-ff-mono);
  font-size: 10px;
  letter-spacing: var(--v2-tr-micro);
  text-transform: uppercase;
  color: var(--v2-gold);
  margin-bottom: 18px;
}
.v2-rsvp-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.v2-rsvp-choice {
  padding: 32px 24px;
  border: 1px solid var(--v2-hair-strong);
  background: var(--v2-void);
  text-align: center;
  transition: border-color .3s ease, background .3s ease, color .3s ease;
  font-family: var(--v2-ff-display);
  font-style: italic;
  font-size: 22px;
  color: var(--v2-bone);
}
.v2-rsvp-choice:hover { border-color: var(--v2-bone); }
.v2-rsvp-choice.selected { background: var(--v2-ember); border-color: var(--v2-ember); color: var(--v2-bone); }
.v2-rsvp-choice.selected.no { background: transparent; border-color: var(--v2-bone); color: var(--v2-bone); }
.v2-rsvp-choice .tiny { display: block; font-family: var(--v2-ff-mono); font-style: normal; font-size: 9px; letter-spacing: var(--v2-tr-wide); margin-top: 8px; opacity: 0.7; text-transform: uppercase; }

.v2-rsvp-text, .v2-rsvp-area {
  width: 100%;
  padding: 16px 0;
  font-family: var(--v2-ff-display);
  font-style: italic;
  font-size: 18px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--v2-hair-strong);
  outline: none;
  color: var(--v2-bone);
  transition: border-color .3s ease;
}
.v2-rsvp-text:focus, .v2-rsvp-area:focus { border-bottom-color: var(--v2-ember); }
.v2-rsvp-area { resize: vertical; min-height: 80px; }

.v2-rsvp-step { display: inline-flex; align-items: center; gap: 24px; border: 1px solid var(--v2-hair-strong); padding: 8px 20px; }
.v2-rsvp-step button { width: 32px; height: 32px; font-family: var(--v2-ff-display); font-size: 24px; color: var(--v2-bone); }
.v2-rsvp-step button:hover { color: var(--v2-ember); }
.v2-rsvp-step .v { font-family: var(--v2-ff-display); font-style: italic; font-size: 28px; min-width: 40px; text-align: center; }

.v2-rsvp-confirm { text-align: center; padding: 80px 20px; }
.v2-rsvp-confirm .seal {
  width: 140px; height: 140px;
  border: 1px solid var(--v2-ember);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 40px;
  font-family: var(--v2-ff-display);
  font-style: italic;
  font-size: 48px;
  color: var(--v2-ember);
  position: relative;
}
.v2-rsvp-confirm .seal::before {
  content: ''; position: absolute; inset: -8px;
  border: 1px solid var(--v2-gold-dim);
  border-radius: 50%;
  animation: v2-spin 20s linear infinite;
}
@keyframes v2-spin { to { transform: rotate(360deg); } }

/* ── Contacts ────────────────────────────────────────────── */
.v2-contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--v2-hair);
}
.v2-contact {
  padding: 40px 32px;
  background: var(--v2-void);
  position: relative;
  transition: background .4s ease;
}
.v2-contact:hover { background: var(--v2-onyx); }
.v2-contact::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 2px;
  background: var(--v2-ember);
  transition: width .5s cubic-bezier(.2,.7,.2,1);
}
.v2-contact:hover::after { width: 100%; }
.v2-contact-role {
  font-family: var(--v2-ff-mono);
  font-size: 9px;
  letter-spacing: var(--v2-tr-wide);
  text-transform: uppercase;
  color: var(--v2-gold);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.v2-contact-role::before { content: ''; width: 20px; height: 1px; background: var(--v2-gold); }
.v2-contact-name {
  font-family: var(--v2-ff-display);
  font-style: italic;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 6px;
}
.v2-contact-sub { font-family: var(--v2-ff-display); font-size: 14px; color: var(--v2-bone-dim); margin-bottom: 32px; }
.v2-contact-lines {
  padding-top: 24px;
  border-top: 1px solid var(--v2-hair);
  display: flex; flex-direction: column; gap: 14px;
}
.v2-contact-line {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--v2-ff-display);
  font-style: italic;
  font-size: 20px;
  transition: color .3s ease;
}
.v2-contact-line:hover { color: var(--v2-ember); }
.v2-contact-line .ic {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--v2-ff-mono);
  font-style: normal;
  font-size: 10px;
}

/* ── Footer ──────────────────────────────────────────────── */
.v2-footer {
  padding: 120px 48px 48px;
  border-top: 1px solid var(--v2-hair);
  background: var(--v2-onyx);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 64px;
}
.v2-footer-mono {
  font-family: 'Bodoni Moda', 'Didot', serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'opsz' 96;
  font-size: 120px;
  line-height: 0.95;
  letter-spacing: -0.005em;
}
.v2-footer-mono .amp {
  color: var(--v2-ember);
  font-style: italic;
  font-weight: 400;
}
.v2-footer h5 {
  font-family: var(--v2-ff-mono);
  font-size: 10px;
  letter-spacing: var(--v2-tr-wide);
  text-transform: uppercase;
  color: var(--v2-gold);
  margin-bottom: 20px;
}
.v2-footer p { color: var(--v2-bone-dim); font-size: 13px; line-height: 1.7; font-family: var(--v2-ff-display); font-style: italic; font-size: 16px; }
.v2-footer-bottom {
  grid-column: 1 / -1;
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--v2-hair);
  display: flex; justify-content: space-between;
  font-family: var(--v2-ff-mono);
  font-size: 9px;
  letter-spacing: var(--v2-tr-wide);
  text-transform: uppercase;
  color: var(--v2-bone-soft);
}

/* ── Reveal animations ───────────────────────────────────── */
.v2-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(.2,.7,.2,1), transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.v2-reveal.in { opacity: 1; transform: translateY(0); }
.v2-reveal.slide-left { transform: translateX(40px); }
.v2-reveal.slide-left.in { transform: translateX(0); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .v2 button, .v2 a { cursor: pointer; }

  .v2-hero { grid-template-columns: 1fr; padding: 120px 24px 60px; gap: 40px; }
  .v2-hero-cta { position: static; margin-top: 32px; }
  .v2-hero-scroll { position: static; display: none; }

  .v2-section, .v2-countdown-sect { padding: 80px 24px; }
  .v2-countdown-head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
  .v2-countdown-unit { padding: 32px 12px; }
  .v2-section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }
  .v2-section-label { text-align: left; }

  .v2-program { grid-template-columns: 1fr; }
  .v2-program-left { padding: 24px 0; border-right: none; }
  .v2-program-right { padding: 24px 0; position: static; }
  .v2-event { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .v2-event::before { display: none; }

  .v2-dress { grid-template-columns: 1fr; }
  .v2-dress-col { padding: 40px 24px; }

  .v2-hotels { grid-template-columns: 1fr; }

  .v2-contacts { grid-template-columns: 1fr; }
  .v2-footer { grid-template-columns: 1fr; gap: 40px; padding: 80px 24px 40px; }
  .v2-footer-mono { font-size: 80px; }
  .v2-warning { grid-template-columns: 1fr; gap: 16px; padding: 32px 24px; }
  .v2-airbnb { padding: 28px 24px; }
  .v2-airbnb:hover { padding-left: 28px; border-left-width: 3px; }
  .v2-airbnb-inner { grid-template-columns: 1fr; gap: 20px; }
  .v2-airbnb-lead { font-size: 22px; }
  .v2-airbnb-arrow { width: 40px; }
  .v2-airbnb:hover .v2-airbnb-arrow { width: 48px; }

  .v2-nav { padding: 0 24px; height: 64px; }
  .v2-drawer-panel { padding: 80px 32px 24px; }
  .v2-drawer li a { font-size: 30px; gap: 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .v2 *, .v2 *::before, .v2 *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ─────────────────────────────────────────────────────────
   AJOUTS PROJET (pas dans le design d'origine)
   ───────────────────────────────────────────────────────── */

/* Toggle langue FR / EN dans la nav */
.v2-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--v2-ff-mono);
  font-size: 10px;
  letter-spacing: var(--v2-tr-wide);
  text-transform: uppercase;
}
.v2-lang-btn {
  padding: 4px 6px;
  color: var(--v2-bone-dim);
  transition: color .25s ease;
  cursor: pointer;
}
.v2-lang-btn:hover { color: var(--v2-bone); }
.v2-lang-btn.is-active { color: var(--v2-gold); }
.v2-lang-sep { color: var(--v2-bone-soft); }

/* Accessibilité : label visuellement masqué mais lisible par lecteur d'écran */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Grille contacts adaptée pour 4 référents (au lieu de 6) — 2 colonnes desktop */
.v2-contacts-4 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 960px) {
  .v2-contacts-4 { grid-template-columns: 1fr; }
}

/* Label des RSVP placeholders avec couleur correcte */
.v2-rsvp-fallback {
  margin-top: 24px;
  color: var(--v2-bone-dim);
  font-size: 14px;
  font-family: var(--v2-ff-display);
  font-style: italic;
}

/* ─────────────────────────────────────────────────────────
   ORNEMENTS WEDDING — alliances entrelacées + filets fins
   Apparaissent entre chaque section + dans le footer pour
   apporter le ton "mariage" sans casser le côté éditorial.
   ───────────────────────────────────────────────────────── */
.v2-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 64px 24px 0;
  margin: 0;
  pointer-events: none;
}
.v2-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--v2-gold-dim) 50%,
    transparent 100%
  );
  max-width: 220px;
  opacity: 0.65;
}
.v2-divider .rings {
  width: 38px;
  height: 22px;
  flex-shrink: 0;
  color: var(--v2-gold);
  opacity: 0.9;
}

/* Variante compacte pour le footer (ornement de clôture) */
.v2-divider.compact {
  padding: 0 24px 32px;
}
.v2-divider.compact .line { max-width: 140px; }

/* Variante mini pour le hero (sous le date subtitle) */
.v2-divider.mini {
  padding: 18px 24px 0;
  gap: 18px;
}
.v2-divider.mini .line { max-width: 60px; opacity: 0.5; }
.v2-divider.mini .rings { width: 26px; height: 16px; opacity: 0.75; }

@media (max-width: 600px) {
  .v2-divider {
    padding: 40px 16px 0;
    gap: 18px;
  }
  .v2-divider .line { max-width: 90px; }
  .v2-divider .rings { width: 30px; height: 18px; }
  .v2-divider.compact { padding: 0 16px 24px; }
  .v2-divider.mini { padding: 14px 16px 0; gap: 14px; }
  .v2-divider.mini .line { max-width: 40px; }
  .v2-divider.mini .rings { width: 22px; }
}

/* On retire les border-top des sections puisque le diviseur joue ce rôle visuel */
.v2-section,
.v2-countdown-sect,
.v2-footer {
  border-top: none;
}

/* ─────────────────────────────────────────────────────────
   ICÔNES WEDDING — symboles blancs ligne-art
   ───────────────────────────────────────────────────────── */

/* Icône avant le titre d'un événement (programme) */
.v2-event-content {
  display: flex;
  flex-direction: column;
}
.v2-event-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
}
.v2-event-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  color: #FFFFFF;
}
.v2-event-icon svg { width: 100%; height: 100%; display: block; }

/* Icône en entrée d'une section (utilisée pour le RSVP) */
.v2-section-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  color: #FFFFFF;
}
.v2-section-icon svg {
  width: 52px;
  height: 52px;
}

/* Le cœur dans le diviseur du hero (remplace les alliances) — carré, blanc */
.v2-divider .heart {
  color: #FFFFFF;
  width: 24px;
  height: 24px;
}

/* ─────────────────────────────────────────────────────────
   CARNET D'ADRESSES — CŒURS FLIP 3D
   - 1 cœur SVG par contact (face avant + face arrière)
   - Auto-flip au scroll dans la vue (cf. main.js)
   - Click pour re-flipper manuellement
   ───────────────────────────────────────────────────────── */
.v2-hearts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  perspective: 1500px;
}
.v2-heart {
  position: relative;
  aspect-ratio: 1 / 0.92;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 1s cubic-bezier(.6, 0, .2, 1);
}
.v2-heart.flipped { transform: rotateY(180deg); }
.v2-heart-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.v2-heart-back { transform: rotateY(180deg); }
.v2-heart-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* Contenu HTML positionné en absolu PAR-DESSUS le SVG du cœur */
.v2-heart-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Padding asymétrique : on laisse plus d'espace en bas (la pointe du cœur)
     pour que le contenu reste dans la zone "lobes" en haut, là où le cœur
     est le plus large. */
  padding: 16% 18% 26%;
}
.v2-heart-role {
  font-family: var(--v2-ff-mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--v2-gold);
  margin-bottom: 8px;
}
.v2-heart-name {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 30px;
  color: var(--v2-bone);
  margin-bottom: 12px;
  line-height: 1.05;
}
.v2-heart-mono {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 64px;
  color: var(--v2-bone);
  line-height: 0.9;
  margin-bottom: 8px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.v2-heart-mono .amp {
  color: var(--v2-gold);
  font-size: 0.7em;
  vertical-align: super;
  margin: 0 -2px;
}
.v2-heart-hint {
  position: absolute;
  bottom: 24%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--v2-ff-mono);
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--v2-bone-soft);
  white-space: nowrap;
}
.v2-heart-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 180px;
}
.v2-heart-action {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--v2-hair-strong);
  color: var(--v2-bone);
  font-family: var(--v2-ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color .3s, color .3s, background .3s;
}
.v2-heart-action:hover {
  border-color: var(--v2-gold);
  color: var(--v2-gold);
  background: rgba(184, 149, 106, 0.08);
}
.v2-heart-action svg { width: 12px; height: 12px; }

/* Mobile : un cœur par ligne, contenu un poil plus petit */
@media (max-width: 600px) {
  .v2-hearts {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .v2-heart-mono { font-size: 56px; }
  .v2-heart-name { font-size: 26px; }
  .v2-heart-action { font-size: 9.5px; padding: 9px 10px; }
}
.v2-divider.mini .heart {
  width: 22px;
  height: 22px;
  opacity: 0.95;
}
@media (max-width: 600px) {
  .v2-divider.mini .heart { width: 18px; height: 18px; }
}

@media (max-width: 600px) {
  .v2-event-icon { width: 34px; height: 34px; }
  .v2-event-head { gap: 12px; margin-bottom: 4px; }
  .v2-section-icon { margin-bottom: 24px; }
  .v2-section-icon svg { width: 42px; height: 42px; }
}

/* ─────────────────────────────────────────────────────────
   CAROUSEL HERO — adapté du handoff Claude Design
   - Mécanique : track [...photos, ...photos] dupliqué
                 + width: max-content + display: flex
                 + animation translateX(0) → translateX(-50%) en 40s linear infinite
   - Adaptation : tokens couleur --v2-* + typo Bodoni (au lieu d'Italiana)
                 pour rester cohérent avec le reste du site
   ───────────────────────────────────────────────────────── */

/* Le hero en mode carrousel surcharge les règles génériques .v2-hero
   (qui faisaient un grid 2 colonnes pour l'ancien layout) */
.v2-hero-carousel {
  display: block !important;
  padding: 0 !important;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Le track dupliqué, animé en boucle infinie */
.v2-hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 80px 24px;
  width: max-content;          /* essentiel pour que la translation fonctionne */
  animation: v2HeroScroll 40s linear infinite;
  will-change: transform;       /* hint GPU : promeut le carrousel sur sa propre layer */
}
@keyframes v2HeroScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* moitié = un set complet, donc loop seamless */
}

.v2-hero-slide {
  flex: 0 0 auto;
  width: clamp(280px, 32vw, 520px);
  height: 80vh;
  position: relative;
  overflow: hidden;
}
.v2-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Filtre cohérent avec le ton éditorial dark du reste du site */
  filter: grayscale(0.3) contrast(1.05) brightness(0.78);
}

/* Voile sombre par-dessus le carrousel pour faire ressortir l'overlay central */
.v2-hero-tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.15) 35%, rgba(5,5,5,0.85) 100%),
    linear-gradient(90deg, rgba(5,5,5,0.6) 0%, transparent 12%, transparent 88%, rgba(5,5,5,0.6) 100%);
}

/* Overlay centré : monogramme + date */
.v2-hero-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  color: var(--v2-bone);
  width: min(90%, 900px);
}

/* Monogramme S & C taille moyenne — Bodoni (cohérent avec le footer + nav).
   - opsz 48 (au lieu de 96) : on réduit le contraste typographique pour que
     les hairlines (déliées) restent visibles sur les fonds clairs / herbeux.
   - Weight 500 (au lieu de 400) : épaissit légèrement les traits fins.
   - Text-shadow multi-couches : ombre proche pour la définition + halo flou
     pour la lisibilité sur photos colorées + petit "outline" pour assurer
     la visibilité même sur les arrières-plans très clairs (herbe, ciel, blanc). */
.v2-hero-mono-mid {
  font-family: 'Bodoni Moda', 'Didot', serif;
  font-style: italic;
  font-weight: 500;
  font-variation-settings: 'opsz' 48;
  font-size: clamp(96px, 13vw, 180px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.04em;
  color: var(--v2-bone);
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.5),    /* ombre proche : définition */
    0 8px 40px rgba(0, 0, 0, 0.55),  /* halo flou : profondeur */
    0 0 2px rgba(0, 0, 0, 0.4);      /* contour quasi-invisible : sauve les hairlines */
}
.v2-hero-mono-mid .amp {
  color: var(--v2-ember); /* or vieilli, accent du site */
  font-size: 1.05em;
  margin: 0 -0.02em;
  transform: translateY(0.02em);
  /* Le & garde sa graisse plus aérienne — il est en or donc déjà bien visible */
  font-weight: 400;
}

.v2-hero-date-c {
  margin-top: 24px;
  font-family: var(--v2-ff-mono);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  /* Blanc cassé pur + GRAS (700) pour bien ressortir sans être trop gros.
     Double ombre noire pour rester lisible sur toutes les photos, claires
     comme sombres. */
  color: #FFFFFF;
  font-weight: 700;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.9),
    0 0 24px rgba(0, 0, 0, 0.6);
}

/* CTA et scroll : on FORCE position: absolute dans le carrousel pour qu'ils
   restent ancrés en bas même sur tablette/mobile (où la règle générique
   @media 960 les passait en static — adapté à l'ancien layout grid). */
.v2-hero-carousel .v2-hero-cta {
  position: absolute !important;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  margin-top: 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.v2-hero-carousel .v2-hero-scroll {
  position: absolute !important;
  bottom: 40px;
  right: 32px;
  display: flex !important;
  z-index: 3;
}

/* ── Responsive carrousel — mobile (<600px) ──────────────── */
@media (max-width: 600px) {
  .v2-hero-carousel { min-height: 100vh; }
  .v2-hero-slides {
    padding: 64px 16px;
    gap: 16px;
    /* Animation un peu plus rapide sur mobile car les images sont plus étroites */
    animation-duration: 32s;
  }
  .v2-hero-slide {
    width: clamp(220px, 75vw, 320px);
    height: 70vh;
  }
  .v2-hero-mono-mid {
    font-size: clamp(72px, 22vw, 140px);
  }
  .v2-hero-date-c {
    font-size: 12px;
    letter-spacing: 0.22em;
    line-height: 1.6;
    margin-top: 18px;
  }
  /* CTA mobile : pleine largeur, l'un sous l'autre, centré */
  .v2-hero-carousel .v2-hero-cta {
    bottom: 28px;
    width: calc(100% - 32px);
    flex-direction: column;
    gap: 10px;
  }
  .v2-hero-carousel .v2-hero-cta .v2-btn {
    width: 100%;
    justify-content: center;
  }
  /* Scroll caché sur mobile (manque de place) */
  .v2-hero-carousel .v2-hero-scroll { display: none !important; }
}

/* Reduced motion : on stoppe le défilé pour les utilisateurs sensibles */
@media (prefers-reduced-motion: reduce) {
  .v2-hero-slides { animation: none; }
}

/* ═════════════════════════════════════════════════════════
   PHOTOS EN COULEUR — sur le thème sombre original
   ─────────────────────────────────────────────────────────
   On retire le filtre grayscale partout pour que les photos
   ressortent en couleur (au lieu d'être en N&B comme dans
   le design éditorial d'origine). On garde brightness/contrast
   pour rester cohérent avec l'ambiance dark du site.
   ═════════════════════════════════════════════════════════ */

/* Carrousel hero — légèrement assombri pour rester lisible avec
   le voile sombre et le monogramme par-dessus */
.v2-hero-carousel .v2-hero-slide img {
  filter: brightness(0.85) contrast(1.05);
}

/* Hôtels — couleurs ORIGINALES toujours, aucun filtre, aucun changement au hover.
   Les photos s'affichent telles que dans leurs fichiers d'origine. */
.v2-hotel-img img {
  filter: none !important;
}
.v2-hotel:hover .v2-hotel-img img {
  filter: none !important;
}

/* Dress code "Oui" + hover */
.v2-dress-photo img {
  filter: brightness(0.9) contrast(1.05);
}
.v2-dress-photo:hover img {
  filter: brightness(1) contrast(1.1);
}
/* Dress code "Non" : on assombrit + désature pour garder l'effet "interdit" */
.v2-dress-photo.avoid img {
  filter: brightness(0.55) contrast(1.05) saturate(0.7);
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE — TABLETTE & MOBILE (raffinements)
   90 % des invités navigueront sur mobile, donc on soigne :
   - Lisibilité (tailles de texte, espaces)
   - Tactile (cibles >= 44px, pas de hover)
   - Pas de débordement horizontal
   - Nav simplifiée
   ───────────────────────────────────────────────────────── */

/* ── Tablette (768px → 960px) ────────────────────────────── */
@media (max-width: 960px) {
  /* Empêcher tout débordement horizontal global */
  html, body { overflow-x: hidden; max-width: 100vw; }

  /* Nav : on retire le compteur 0X/07 et on garde le drawer accessible */
  .v2-nav-index { display: none; }

  /* Hôtels : annuler le margin négatif qui débordait */
  .v2-hotel-img { margin: -32px -32px 28px; }

  /* Footer : déjà en 1 colonne — tailles adaptées */
  .v2-footer-mono { font-size: 72px; }
}

/* ── Mobile (< 600px) ────────────────────────────────────── */
@media (max-width: 600px) {

  /* — TYPOGRAPHIE — moins agressive sur mobile */
  body.v2 { font-size: 14px; line-height: 1.65; }
  .v2 .title { font-size: clamp(34px, 9vw, 52px); line-height: 1.05; }
  .v2 .lead { font-size: clamp(15px, 3.8vw, 18px); }

  /* — NAV mobile — simplifiée — */
  .v2-nav { padding: 0 16px; height: 56px; }
  .v2-nav-mono { font-size: 20px; gap: 10px; }
  .v2-nav-right { gap: 12px; }
  /* On masque la lang dans la nav (on la met dans le drawer à la place) */
  .v2-lang { display: none; }
  /* Le bouton INDEX devient juste l'icône burger */
  .v2-menu-btn { padding: 10px 12px; gap: 8px; }
  .v2-menu-btn span:first-child { display: none; } /* cache le mot "Index" */

  /* — DRAWER — toggle lang en bas du panneau — */
  .v2-drawer-panel { padding: 72px 24px 24px; }
  .v2-drawer li a { font-size: 24px; gap: 12px; padding: 18px 0; }
  .v2-drawer li a::before { font-size: 9px; min-width: 32px; }
  .v2-drawer-foot { font-size: 9px; flex-wrap: wrap; gap: 8px; }

  /* — HERO — */
  .v2-hero {
    min-height: 100vh;
    padding: 96px 16px 48px;
    gap: 28px;
  }
  /* CTA pleine largeur, l'un sous l'autre */
  .v2-hero-cta {
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    width: 100%;
  }
  .v2-hero-cta .v2-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
  }

  /* — COUNTDOWN — 2x2 au lieu de 4x1 — */
  .v2-countdown { grid-template-columns: 1fr 1fr; }
  .v2-countdown-unit { padding: 24px 8px; border-bottom: 1px solid var(--v2-hair); }
  .v2-countdown-unit:nth-child(2) { border-right: none; }
  .v2-countdown-unit:nth-child(3), .v2-countdown-unit:nth-child(4) { border-bottom: none; }
  .v2-countdown-val { font-size: clamp(44px, 14vw, 72px); }
  .v2-countdown-lab { margin-top: 14px; font-size: 9px; }
  .v2-countdown-sect { padding: 50px 16px; }

  /* — SECTION padding — */
  .v2-section { padding: 60px 16px; }

  /* En-tête de section sur mobile :
     ligne 1 = "§ 0X" + titre côte à côte (comme desktop)
     ligne 2 = label (date, info) en dessous, pleine largeur
     → on évite l'effet "trop d'étages" empilés. */
  .v2-section-head {
    grid-template-columns: auto 1fr;
    gap: 12px 16px;
    align-items: baseline;
    margin-bottom: 32px;
    padding-bottom: 18px;
  }
  .v2-section-num { font-size: 28px; }
  .v2 .title {
    /* Police réduite par rapport au défaut mobile (clamp(34px,9vw,52px))
       pour qu'elle tienne SUR LA MÊME LIGNE que le numéro § 0X. */
    font-size: clamp(22px, 6.5vw, 32px);
    line-height: 1.05;
  }
  .v2-section-label {
    font-size: 9px;
    padding-top: 6px;
    grid-column: 1 / -1;   /* la 2e ligne s'étale sur les 2 colonnes */
    text-align: left;
  }

  /* — PROGRAMME — temps + contenu */
  .v2-event { padding: 24px 0; gap: 8px; }
  .v2-event-time { font-size: 36px; }
  .v2-event-title { font-size: 24px; }
  .v2-event-place { font-size: 14px; }
  .v2-event-addr { font-size: 11px; }

  /* Carte SVG : plus haute pour la lisibilité (3/4 → 1/1 sur mobile) */
  .v2-map { aspect-ratio: 4/5; }
  .v2-map-bottom .name { font-size: 22px; }

  /* — DRESS CODE — palette compacte */
  .v2-dress-col { padding: 32px 16px; }
  .v2-dress-col h3 { font-size: 36px; gap: 12px; }
  .v2-dress-col p { font-size: 16px; margin-bottom: 32px; }
  .v2-dress-palette { gap: 8px; margin-bottom: 36px; }
  .v2-dress-palette .sw { width: 36px; height: 56px; }
  .v2-dress-palette .sw::after { font-size: 7px; letter-spacing: 0.12em; }
  .v2-dress-gallery { gap: 8px; }

  /* — INFOS / hôtels en CARROUSEL horizontal scroll-snap — */
  .v2-hotels {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Bord à bord : on déborde du padding du parent */
    margin: 0 -16px 24px;
    padding: 0 16px 16px;
    gap: 12px;
    background: transparent; /* on retire la fine ligne grid (1px) */
    /* Cache la scrollbar (visuel propre) */
    scrollbar-width: none;
  }
  .v2-hotels::-webkit-scrollbar { display: none; }
  .v2-hotel {
    flex: 0 0 88%;
    scroll-snap-align: start;
    padding: 24px;
    border: 1px solid var(--v2-hair-strong);
  }
  .v2-hotel-img { margin: -24px -24px 20px; aspect-ratio: 4/3; }
  .v2-hotel-name { font-size: 24px; }
  .v2-hotel-desc { font-size: 14px; }
  .v2-hotel-price { font-size: 22px; }
  .v2-warning { padding: 24px 16px; gap: 12px; }
  .v2-warning .mk { width: 48px; height: 48px; font-size: 24px; }
  .v2-warning h4 { font-size: 22px; }
  .v2-warning p { font-size: 13px; }

  /* — RSVP — pleine largeur, cibles tactiles confortables
     On vire le min-height: 80vh qui créait un énorme blanc inutile sur mobile */
  .v2-rsvp {
    padding: 24px 16px 32px;
    min-height: 0;
    justify-content: flex-start;
  }
  #v2-rsvp-search-step { padding: 0; }
  .v2-rsvp-input { font-size: clamp(22px, 6vw, 32px); padding: 16px 0; }
  .v2-rsvp-hint { font-size: 9px; }
  .v2-rsvp-sug-row { padding: 16px 18px; }
  .v2-rsvp-sug-name { font-size: 18px; }
  .v2-rsvp-sug-meta { font-size: 9px; }
  .v2-rsvp-form-head h3 { font-size: 36px; }
  .v2-rsvp-choice { padding: 20px 12px; font-size: 16px; min-height: 60px; }
  .v2-rsvp-step button { width: 44px; height: 44px; font-size: 28px; } /* cible tactile 44px */
  .v2-rsvp-step .v { font-size: 24px; }
  .v2-rsvp-confirm .seal { width: 100px; height: 100px; font-size: 32px; margin-bottom: 28px; }
  .v2-rsvp-confirm { padding: 40px 8px; }

  /* — CONTACTS — stack vertical */
  .v2-contact { padding: 28px 20px; }
  .v2-contact-name { font-size: 28px; }
  .v2-contact-line { font-size: 16px; padding: 8px 0; min-height: 44px; align-items: center; } /* tactile */
  .v2-contact-line .ic { width: 32px; height: 32px; }

  /* — FOOTER — */
  .v2-footer { gap: 32px; padding: 60px 16px 32px; }
  .v2-footer-mono { font-size: 64px; }
  .v2-footer h5 { margin-bottom: 14px; font-size: 9px; }
  .v2-footer p { font-size: 14px; }
  .v2-footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; margin-top: 48px; font-size: 8px; }

  /* — Tags hôtel & autres tags — */
  .v2-hotel-tag { font-size: 8px; padding: 5px 8px; }

  /* — Boutons globaux — taille tactile */
  .v2-btn { padding: 14px 22px; font-size: 9px; gap: 12px; min-height: 44px; }
}

/* ── Très petit mobile (< 360px) ─────────────────────────── */
@media (max-width: 360px) {
  .v2-section { padding: 48px 12px; }
  .v2-nav { padding: 0 12px; }
}

/* ── Désactiver les hover sur écrans tactiles ────────────── */
@media (hover: none) {
  /* Pas d'effet "scale" qui surprend au tap */
  .v2-hotel:hover .v2-hotel-img img,
  .v2-dress-photo:hover img { transform: none; }
  .v2-swatch:hover .v2-swatch-color { transform: none; }
  /* On garde les transitions de couleur, on enlève les translations parasites */
  .v2-event:hover { padding-left: 0; }
  .v2-event:hover::before { width: 0; }
  .v2-rsvp-sug-row:hover { padding-left: 28px; }
}

/* ═══════════════════════════════════════════════════════════
   VERSET — Genèse 2:18 (respiration entre Hero et Programme)
   Pas de section §, juste le texte centré, prénoms en or.
   ═══════════════════════════════════════════════════════════ */
.v2-verse {
  max-width: 880px;
  margin: 0 auto;
  padding: 100px 32px;
  text-align: center;
  color: var(--v2-bone);
}
.v2-verse-text {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'opsz' 72;
  font-size: clamp(22px, 3.6vw, 38px);
  line-height: 1.5;
  margin: 0;
  padding: 0;
  border: 0;
  quotes: none;
  color: var(--v2-bone);
}
.v2-verse-text::before,
.v2-verse-text::after { content: none; }
.v2-verse-name {
  color: var(--v2-gold);
  font-style: italic;
  font-weight: 500;
  /* léger soulignement doré très discret */
  background-image: linear-gradient(var(--v2-gold-dim), var(--v2-gold-dim));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  padding-bottom: 2px;
}
.v2-verse-ref {
  display: block;
  margin-top: 28px;
  font-family: var(--v2-ff-mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--v2-bone-dim);
}

/* Mobile */
@media (max-width: 600px) {
  .v2-verse { padding: 64px 20px; }
  .v2-verse-text { font-size: 19px; line-height: 1.55; }
  .v2-verse-ref { margin-top: 22px; font-size: 9px; letter-spacing: .26em; }
}

/* ═══════════════════════════════════════════════════════════
   DRESS CODE — Version pastel (refonte 2026-05-14)
   ═══════════════════════════════════════════════════════════
   - Une seule phrase d'intro (Bodoni italique, centrée)
   - Palette de 6 swatches pastel avec nom + hex
   ═══════════════════════════════════════════════════════════ */

.v2-dress-pastel {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 32px 80px;
}

.v2-dress-intro {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'opsz' 48;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.5;
  text-align: center;
  color: var(--v2-bone);
  max-width: 640px;
  margin: 0 auto 64px;
}
.v2-dress-intro em {
  color: var(--v2-gold);
  font-style: italic;
  /* Petit soulignement doré très discret */
  background-image: linear-gradient(var(--v2-gold-dim), var(--v2-gold-dim));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  padding-bottom: 2px;
}

/* Palette : flex centré, wrap sur mobile */
.v2-dress-palette-pastel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.v2-swatch {
  flex: 0 1 140px;
  margin: 0;
  text-align: center;
}
.v2-swatch-color {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.2;
  border: 1px solid var(--v2-hair);
  margin-bottom: 14px;
  transition: transform .4s ease, box-shadow .4s ease;
}
.v2-swatch:hover .v2-swatch-color {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.v2-swatch figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.v2-swatch-name {
  font-family: var(--v2-ff-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--v2-bone);
}
.v2-swatch-hex {
  font-family: var(--v2-ff-mono);
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--v2-bone-dim);
}

/* Tablette */
@media (max-width: 960px) {
  .v2-dress-pastel { padding: 16px 24px 64px; }
  .v2-dress-palette-pastel { gap: 24px; }
  .v2-swatch { flex: 0 1 120px; }
}

/* Mobile : palette plus serrée, 3 colonnes naturelles */
@media (max-width: 600px) {
  .v2-dress-pastel { padding: 8px 16px 56px; }
  .v2-dress-intro { font-size: 18px; line-height: 1.55; margin-bottom: 40px; }
  .v2-dress-palette-pastel { gap: 14px 16px; }
  .v2-swatch { flex: 0 1 calc(33.333% - 12px); }
  .v2-swatch-color { aspect-ratio: 1 / 1.25; margin-bottom: 10px; }
  .v2-swatch-name { font-size: 9px; letter-spacing: .18em; }
  .v2-swatch-hex { font-size: 8px; }
}

