/* ============================================================
   EVA BEAUTÉ — design system « Blanc & rouge » (version claire)
   Blanc dominant, rouge de marque en secondaire, encre bordeaux.
   Même structure, mêmes classes et même HTML que la version sombre :
   seules les valeurs des variables et quelques fonds changent.
   Playfair Display + Manrope + Great Vibes
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-2: #fbf5f3;
  --card: #ffffff;
  --card-2: #fdf7f5;
  --line: rgba(42, 16, 19, 0.16);
  --line-soft: rgba(42, 16, 19, 0.08);

  /* --ivory = couleur de texte principale (encre), --muted/--faint = secondaires.
     Les noms sont conservés pour que le HTML reste strictement identique. */
  --ivory: #2a1013;
  --muted: #6b5153;
  --faint: #8d7477;

  --red: #8a1119;
  --red-bright: #ac1f2b;

  /* --gold et --sand portent le rouge dans cette version : c'est lui
     la couleur d'accent (eyebrows, prix, icônes, liens). */
  --gold: #8a1119;
  --gold-deep: #6d0c14;
  --sand: #6d0c14;
  --wood: #8a6a4a;

  --grad-gold: linear-gradient(120deg, #ac1f2b 0%, #8a1119 55%, #6d0c14 100%);
  --grad-red: linear-gradient(120deg, #ac1f2b 0%, #8a1119 55%, #6d0c14 100%);

  /* Teintes pilotées depuis le HTML (vagues du hero, halos de section) */
  --wave-a: #fbf5f3;
  --wave-b: #ffffff;
  --wave-line-a: rgba(138, 17, 25, 0.35);
  --wave-line-b: rgba(138, 17, 25, 0.18);
  --halo-red: rgba(172, 31, 43, 0.1);
  --halo-gold: rgba(172, 31, 43, 0.08);
  --tint-soft: rgba(138, 17, 25, 0.06);
}

* { -webkit-tap-highlight-color: transparent; }
html { scroll-padding-top: 96px; scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--ivory);
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(138, 17, 25, 0.16); color: var(--ivory); }

/* Fix mobile : annule le column-gap des grilles cols-12 sous md uniquement
   (11 gaps cumulés > largeur du viewport sur petits écrans) */
@media (max-width: 767px) {
  .grid.grid-cols-12 { column-gap: 0; }
  /* ...sauf la galerie, dont les tuiles se toucheraient deux par deux */
  .gal-grid.grid-cols-12 { column-gap: 1rem; }
}

/* ---------- Typo ---------- */
.display, h1, h2 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.005em;
}
.ital { font-family: "Playfair Display", serif; font-style: italic; font-weight: 400; }
.script { font-family: "Great Vibes", cursive; font-weight: 400; color: var(--red); }

.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Texte en dégradé : le dégradé n'est peint que dans la boîte du texte, or
   l'italique de Playfair déborde (« ? », « t » final, accents). On agrandit la
   zone peinte avec du padding, compensé par une marge négative pour ne rien
   décaler. box-decoration-break : chaque ligne garde sa marge si le texte passe
   à la ligne. */
.gold-text, .shimmer {
  padding: 0.12em 0.18em 0.14em 0.14em;
  margin: -0.12em -0.18em -0.14em -0.14em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
/* Sur fond clair, le scintillement doré serait illisible : on garde un
   dégradé rouge, animé plus discrètement. */
.shimmer {
  background: linear-gradient(110deg, #8a1119 18%, #c8323f 40%, #6d0c14 58%, #8a1119 82%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 8s ease-in-out infinite;
}
@keyframes shimmer { 0%, 100% { background-position: 110% 0; } 50% { background-position: -10% 0; } }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: linear-gradient(90deg, transparent, var(--red)); }
.eyebrow.center::after { content: ""; width: 34px; height: 1px; background: linear-gradient(90deg, var(--red), transparent); }

/* ---------- Grain / halo d'ambiance ---------- */
/* Grain sombre et très léger : sur blanc, un grain clair ne se verrait pas. */
.grain::before {
  content: "";
  position: fixed;
  inset: -50%;
  pointer-events: none;
  z-index: 5;
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.35 0 0 0 0 0.12 0 0 0 0 0.14 0 0 0 0.022 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.halo { position: relative; }
.halo::after {
  content: "";
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(172, 31, 43, 0.09), transparent 66%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Barre de progression de lecture ---------- */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: var(--grad-red); z-index: 60; pointer-events: none;
  transition: width 0.12s linear;
}

/* ---------- NAV ---------- */
.nav-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.nav-bar.scrolled, .nav-bar.menu-open, .nav-bar.solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 10px 30px -24px rgba(42, 16, 19, 0.5);
}
.nav-link {
  font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; padding: 6px 0; position: relative;
  transition: color 0.25s ease;
}
.nav-link:hover { color: var(--ivory); }
.nav-link[aria-current="page"] { color: var(--red); }
.nav-link[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px;
  background: var(--grad-red);
}
.brand { display: inline-flex; align-items: center; line-height: 0; }
/* Logo client (lockup ovale rouge) — nav & pied de page */
.brand-logo { height: 54px; width: auto; display: block; border-radius: 0.4rem; }
.brand-logo-sm { height: 70px; width: auto; display: block; border-radius: 0.45rem; }
@media (max-width: 1023px) { .brand-logo { height: 44px; } }

/* Le hero est clair : la nav transparente a besoin d'un texte sombre dès le départ. */

/* ---------- Menu mobile ---------- */
.mm-backdrop {
  position: fixed; inset: 0; z-index: 58; background: rgba(42, 16, 19, 0.35);
  backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.mm-backdrop.open { opacity: 1; pointer-events: auto; }
.mm-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 59; width: min(85vw, 370px);
  background: linear-gradient(160deg, #ffffff, #fbf5f3);
  border-left: 1px solid var(--line);
  box-shadow: -30px 0 60px -40px rgba(42, 16, 19, 0.5);
  transform: translateX(105%); visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s 0.45s;
  display: flex; flex-direction: column; padding: 6.5rem 2.2rem 2.2rem;
  overflow-y: auto;
}
.mm-panel.open { transform: translateX(0); visibility: visible; transition-delay: 0s; }
.mm-link {
  font-family: "Playfair Display", serif; font-size: 1.65rem; font-weight: 400; color: var(--ivory);
  padding: 0.85rem 0; border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: space-between;
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.mm-link:hover, .mm-link[aria-current="page"] { color: var(--red); padding-left: 6px; }
.mm-close {
  position: absolute; top: 1.35rem; left: 1.5rem; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--red); display: grid; place-items: center;
  background: rgba(251, 245, 243, 0.9);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.mm-close:hover { border-color: var(--red); background: rgba(138, 17, 25, 0.08); transform: translateX(3px); }

/* ---------- Boutons ---------- */
/* Le bouton principal devient rouge plein : sur blanc, c'est lui qui porte l'accent. */
.btn-gold {
  position: relative; display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--grad-red); color: #ffffff;
  padding: 0.95rem 2rem; border-radius: 999px;
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease; overflow: hidden;
  box-shadow: 0 12px 26px -16px rgba(138, 17, 25, 0.7);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -16px rgba(138, 17, 25, 0.65); }
.btn-gold::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 40%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-20deg); left: -60%;
  animation: sheen 4.8s ease-in-out infinite;
}
@keyframes sheen { 0%, 55%, 100% { left: -60%; } 75% { left: 120%; } }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #ffffff; color: var(--ivory);
  padding: 0.95rem 2rem; border-radius: 999px; border: 1px solid var(--line);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.btn-ghost:hover { border-color: var(--red); color: var(--red); background: rgba(138, 17, 25, 0.04); }

.pill {
  display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.45rem 1.05rem;
  border-radius: 999px; background: rgba(255, 255, 255, 0.88); border: 1px solid var(--line);
  font-size: 12.5px; font-weight: 500; color: var(--muted);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.pill .stars { color: var(--red); letter-spacing: 2px; font-size: 11px; }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 35%;
  transform: scale(1.06);
  animation: kenburns 32s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1.06) translateY(0); } to { transform: scale(1.15) translateY(-1.6%); } }
/* Voile blanc : la photo reste visible à droite, le texte se lit en encre à gauche. */
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.93) 40%, rgba(255, 255, 255, 0.5) 72%, rgba(255, 255, 255, 0.72) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.92) 0%, transparent 18%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-top: 6.5rem; padding-bottom: 7rem; }

/* Vagues animées en bas du hero */
.wave-strip { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 3; pointer-events: none; line-height: 0; height: 92px; overflow: hidden; }
.wave-strip div { position: absolute; inset: 0; }
.wave-strip svg { display: block; width: 200%; height: 92px; }
.wave-strip .lay-1 svg { animation: drift 24s linear infinite; }
.wave-strip .lay-2 svg { animation: drift 38s linear infinite reverse; }
@keyframes drift { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Marquee ---------- */
.marquee-wrap {
  overflow: hidden; padding: 1.15rem 0;
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  background: var(--bg-2);
}
/* Boucle sans saccade : la piste prend la largeur de son contenu (max-content),
   sinon translateX(-50%) ne décale que de la moitié de l'ÉCRAN puis revient au départ.
   Pas de gap entre les deux groupes identiques : l'espacement est porté par le
   padding de chaque groupe, pour que -50 % tombe pile sur le début du 2e groupe. */
.marquee { display: flex; width: max-content; white-space: nowrap; will-change: transform; animation: marquee 30s linear infinite; }
.marquee span {
  font-family: "Playfair Display", serif; font-style: italic; font-weight: 400;
  font-size: 1.42rem; color: var(--muted);
  display: inline-flex; align-items: center; gap: 3.2rem; padding-right: 3.2rem;
}
.marquee .dot { color: var(--red); font-style: normal; font-size: 0.95rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .marquee, .hero-bg, .shimmer, .btn-gold::after,
  .wave-strip .lay-1 svg, .wave-strip .lay-2 svg { animation: none !important; }
}

/* ---------- Cartes ---------- */
/* Sur fond clair, les cartes se détachent par l'ombre plutôt que par le contraste. */
.card {
  background: linear-gradient(170deg, var(--card), var(--card-2));
  border: 1px solid var(--line-soft);
  border-radius: 1.1rem;
  box-shadow: 0 2px 10px -6px rgba(42, 16, 19, 0.18);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: 0 26px 50px -28px rgba(42, 16, 19, 0.4); }

/* Les cartes-photos gardent un voile sombre : le texte posé dessus reste blanc. */
.presta-card { position: relative; overflow: hidden; border-radius: 1.1rem; border: 1px solid var(--line-soft); display: block; }
.presta-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease; filter: saturate(0.9) brightness(0.9); }
.presta-card:hover img { transform: scale(1.07); filter: saturate(1.05) brightness(0.97); }
.presta-card .veil {
  position: absolute; inset: 0;
  background: linear-gradient(8deg, rgba(42, 10, 14, 0.93) 8%, rgba(42, 10, 14, 0.35) 50%, rgba(42, 10, 14, 0.06) 74%);
  transition: background 0.5s ease;
}
.presta-card .arrow {
  position: absolute; top: 1.1rem; right: 1.1rem; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, 0.4); color: #ffffff;
  background: rgba(42, 10, 14, 0.4); backdrop-filter: blur(6px);
  transition: transform 0.4s ease, background 0.4s ease;
}
.presta-card:hover .arrow { transform: rotate(45deg); background: rgba(138, 17, 25, 0.75); }
/* Le texte des cartes-photos reste clair malgré le thème blanc. */
.presta-card h3 { color: #ffffff; }
.presta-card p { color: rgba(255, 255, 255, 0.86); }
.presta-card .text-\[11px\] { color: #f4d9c6 !important; }

/* ---------- Liste de prix ---------- */
.price-row {
  display: flex; align-items: baseline; gap: 1rem; padding: 1.05rem 0.35rem;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s ease, padding-left 0.3s ease;
  border-radius: 6px;
}
.price-row:hover { background: rgba(138, 17, 25, 0.04); padding-left: 0.8rem; }
.price-row .name { font-weight: 600; color: var(--ivory); }
.price-row .detail { font-size: 13px; color: var(--faint); margin-top: 3px; line-height: 1.55; max-width: 52ch; }
.price-row .dots { flex: 1; border-bottom: 1px dotted rgba(42, 16, 19, 0.22); transform: translateY(-4px); min-width: 24px; }
.price-row .price { font-family: "Playfair Display", serif; font-size: 1.3rem; color: var(--red); white-space: nowrap; }
.price-row .price.devis { font-size: 0.95rem; font-family: "Manrope", sans-serif; font-weight: 600; color: var(--wood); }
.price-row .time { font-size: 12px; color: var(--faint); white-space: nowrap; }

/* Sous-titre de sous-catégorie dans la carte des tarifs */
.sub-head {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--wood); font-weight: 700; padding: 1.8rem 0 0.4rem;
}
.sub-head:first-child { padding-top: 0; }

/* ---------- Filtres prestations ---------- */
.filter-bar {
  position: sticky; top: 72px; z-index: 40;
  background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.chip {
  display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap;
  padding: 0.6rem 1.15rem; border-radius: 999px; border: 1px solid var(--line-soft);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); background: #ffffff;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.chip:hover { color: var(--ivory); border-color: var(--line); }
.chip[aria-pressed="true"] { color: #ffffff; background: var(--grad-red); border-color: transparent; }
.presta-block[hidden] { display: none; }

/* ---------- Avis ---------- */
.review-card { position: relative; padding: 2rem 1.8rem 1.7rem; }
.review-card .quote-mark {
  font-family: "Playfair Display", serif; font-size: 4.2rem; line-height: 0.6;
  color: rgba(138, 17, 25, 0.28); display: block; margin-bottom: 1.1rem;
}
.review-card .stars { color: var(--red); letter-spacing: 3px; font-size: 13px; }

.note-bar { height: 4px; border-radius: 99px; background: rgba(42, 16, 19, 0.1); overflow: hidden; }
.note-bar i { display: block; height: 100%; width: 0; border-radius: 99px; background: var(--grad-red); transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1); }
.in .note-bar i { width: 98%; }

/* ---------- Galerie ---------- */
.gal-item { position: relative; overflow: hidden; border-radius: 0.9rem; border: 1px solid var(--line-soft); cursor: zoom-in; display: block; width: 100%; padding: 0; background: var(--bg-2); }
.gal-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease; filter: saturate(0.92); }
.gal-item:hover img { transform: scale(1.06); filter: saturate(1.05); }
.gal-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem 1.2rem 1rem;
  background: linear-gradient(0deg, rgba(42, 10, 14, 0.9), transparent);
  font-size: 12.5px; letter-spacing: 0.06em; color: #ffffff; text-align: left;
  opacity: 0; transform: translateY(8px); transition: opacity 0.4s ease, transform 0.4s ease;
}
.gal-item:hover .cap, .gal-item:focus-visible .cap { opacity: 1; transform: none; }
.gal-item::after {
  content: ""; position: absolute; inset: 0; border-radius: 0.9rem; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(138, 17, 25, 0); transition: box-shadow 0.4s ease;
}
.gal-item:hover::after { box-shadow: inset 0 0 0 2px rgba(138, 17, 25, 0.45); }

.lightbox {
  position: fixed; inset: 0; z-index: 80; display: none; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(10px); padding: 6vh 6vw;
}
.lightbox.open { display: flex; animation: lb 0.3s ease; }
@keyframes lb { from { opacity: 0; } to { opacity: 1; } }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 0.8rem; box-shadow: 0 40px 100px -40px rgba(42, 16, 19, 0.55); }
.lb-btn {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--ivory); display: grid; place-items: center;
  background: #ffffff; box-shadow: 0 6px 18px -10px rgba(42, 16, 19, 0.5);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.lb-btn:hover { background: var(--red); border-color: var(--red); color: #ffffff; }
.lb-close { top: 1.2rem; right: 1.4rem; }
.lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* ---------- Reveal au scroll (jamais au-dessus de la ligne de flottaison) ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Bandeau CTA ---------- */
/* Seul bloc franchement rouge de la page : il tranche sur le blanc. */
.cta-band { position: relative; overflow: hidden; background: var(--grad-red); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; pointer-events: none;
}
.cta-band::before { width: 420px; height: 420px; background: rgba(255, 255, 255, 0.22); top: -180px; left: -120px; }
.cta-band::after { width: 380px; height: 380px; background: rgba(255, 255, 255, 0.12); bottom: -200px; right: -80px; }
.cta-band h2, .cta-band .script { color: #ffffff; }
.cta-band .gold-text { background: none; -webkit-text-fill-color: #f6dcc8; color: #f6dcc8; }
.cta-band .btn-gold { background: #ffffff; color: var(--red); box-shadow: 0 12px 26px -16px rgba(0, 0, 0, 0.5); }
.cta-band .btn-gold::after { background: linear-gradient(105deg, transparent, rgba(138, 17, 25, 0.16), transparent); }
.cta-band .btn-ghost { background: transparent; color: #ffffff; border-color: rgba(255, 255, 255, 0.55); }
.cta-band .btn-ghost:hover { background: rgba(255, 255, 255, 0.12); color: #ffffff; border-color: #ffffff; }
.cta-band p { color: rgba(255, 255, 255, 0.85); }

/* Filet rouge au bas des cartes prestation — rappel du mur des cabines */
.presta-card::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; z-index: 2;
  background: var(--grad-red); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.presta-card:hover::before { transform: scaleX(1); }

/* ---------- Divers ---------- */
.stat-num { font-family: "Playfair Display", serif; font-size: clamp(2.4rem, 4.5vw, 3.4rem); font-weight: 400; }
.divider-sun { display: flex; align-items: center; gap: 1.2rem; color: var(--red); }
.divider-sun::before, .divider-sun::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); }

.form-field {
  width: 100%; background: #ffffff; border: 1px solid var(--line);
  border-radius: 0.7rem; padding: 0.95rem 1.15rem; color: var(--ivory); font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease; outline: none;
}
.form-field::placeholder { color: var(--faint); }
.form-field:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(138, 17, 25, 0.1); }
.form-field option { background: #ffffff; color: var(--ivory); }
/* Même rendu sur iPhone/Android : pas de style natif (hauteur et arrondis identiques pour tous les champs) */
.form-field { -webkit-appearance: none; appearance: none; line-height: 1.45; }
select.form-field {
  padding-right: 2.9rem; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b5153' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1.1rem center; background-size: 16px;
}
/* 16 px minimum sur mobile : évite le zoom automatique d'iOS quand on touche un champ */
@media (max-width: 767px) { .form-field { font-size: 16px; } }
.form-status { font-size: 14.5px; line-height: 1.6; padding: 0.9rem 1.1rem; border-radius: 12px; border: 1px solid var(--line-soft); background: var(--bg-2); color: var(--ivory); }
.form-status.err { color: var(--red); border-color: rgba(138, 17, 25, 0.25); }
.form-status[hidden] { display: none; }
button[disabled] { opacity: 0.7; cursor: progress; }
label.form-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }

footer { background: var(--bg-2); }
footer a:hover { color: var(--red); }
.foot-social {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--muted); background: #ffffff;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.foot-social:hover { color: #ffffff; background: var(--red); border-color: var(--red); transform: translateY(-3px); }

/* Badge placeholder photos démo */
.demo-note {
  border: 1px dashed rgba(138, 17, 25, 0.35); border-radius: 0.9rem;
  background: rgba(138, 17, 25, 0.04); color: var(--muted); font-size: 13.5px;
}


/* ---------- Offre du mois : carte posée dans le hero ---------- */
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
/* Deux colonnes seulement quand le titre a la place de respirer à côté de la carte */
@media (min-width: 1200px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) 390px; gap: 3.5rem; }
  .hero-offer { justify-self: end; }
}
.hero-offer {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.85rem;
  width: 100%; max-width: 390px; padding: 1.9rem 1.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(138, 17, 25, 0.16); border-radius: 1.2rem;
  box-shadow: 0 34px 70px -40px rgba(42, 16, 19, 0.6);
  animation: offer-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}
/* la carte a un display explicite : sans ça, l'attribut hidden resterait sans effet */
.hero-offer[hidden] { display: none; }
.hero-offer::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--grad-red); }
.hero-offer-title { font-size: clamp(1.55rem, 2.4vw, 1.9rem); line-height: 1.15; }
.hero-offer-text { font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.hero-offer-price { display: flex; align-items: baseline; gap: 0.9rem; margin: 0.15rem 0 0.35rem; }
.hero-offer-price .promo-price { font-size: 2.7rem; }
.hero-offer-old { display: flex; flex-direction: column; font-size: 13px; line-height: 1.35; color: var(--faint); }
.hero-offer-old s { color: var(--muted); }
/* Carte empilée sous le texte : on laisse de l'air avant les vagues du bas du hero */
@media (max-width: 1199px) { .hero-inner { padding-bottom: 8.5rem; } }
.hero-offer-perks {
  display: flex; align-items: center; gap: 0.4rem; width: 100%;
  padding-top: 0.75rem; margin-top: 0.1rem; border-top: 1px solid var(--line-soft);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.hero-offer-perks i, .hero-offer-perks svg { color: var(--red); }
.hero-offer-perks span { margin: 0 0.35rem; color: var(--faint); }
/* Tablette : la carte prend la largeur et se range en deux colonnes
   (accroche à gauche, prix et bouton à droite) au lieu d'une colonne étroite */
@media (min-width: 768px) and (max-width: 1199px) {
  .hero-offer {
    display: grid; max-width: 760px; padding: 2rem 2.2rem 1.6rem;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    grid-template-areas:
      "tag   price"
      "title price"
      "text  cta"
      "text  note"
      "perks perks";
    column-gap: 2.4rem; row-gap: 0.8rem; align-items: start;
  }
  .hero-offer > .promo-tag { grid-area: tag; justify-self: start; }
  .hero-offer > .hero-offer-title { grid-area: title; }
  .hero-offer > .hero-offer-text { grid-area: text; }
  .hero-offer > .hero-offer-price { grid-area: price; align-self: end; margin: 0; }
  .hero-offer > .btn-gold { grid-area: cta; }
  .hero-offer > .promo-note { grid-area: note; }
  .hero-offer > .hero-offer-perks { grid-area: perks; margin-top: 0.4rem; }
}
@keyframes offer-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hero-offer { animation: none; } }

.promo-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--grad-red); color: #fff; border-radius: 999px;
  padding: 0.4rem 0.95rem; font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.promo-price { font-family: "Playfair Display", serif; line-height: 1; color: var(--red); }
.promo-note { font-size: 12.5px; color: var(--faint); }

/* ---------- Massage duo ---------- */
.duo-media { position: relative; border-radius: 1.2rem; overflow: hidden; border: 1px solid var(--line-soft); }
.duo-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.duo-media .tag {
  position: absolute; left: 1.1rem; bottom: 1.1rem;
  background: rgba(255, 255, 255, 0.94); border-radius: 999px; padding: 0.5rem 1.1rem;
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red);
  backdrop-filter: blur(6px);
}

/* ---------- Partenaire Guinot (volontairement secondaire) ---------- */
/* fond blanc : il s'intercale entre les avis et l'équipe, tous deux sur fond rosé */
.partner { background: var(--bg); }
.partner-media { border-radius: 1.1rem; overflow: hidden; border: 1px solid var(--line-soft); }
.partner-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cert {
  display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.5rem 0.95rem;
  border: 1px solid var(--line); border-radius: 0.55rem; background: #fff;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.cert i, .cert svg { color: var(--red); }

/* Pastille « exclusivité » posée sur une carte prestation */
.excl {
  position: absolute; top: 1.1rem; left: 1.1rem; z-index: 3;
  background: var(--grad-red); color: #fff; border-radius: 999px;
  padding: 0.4rem 0.9rem; font-size: 10px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.6);
}


/* Emplacement du portrait d'Eva, en attendant la vraie photo */
.portrait-ph {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-radius: 1rem; border: 1px solid var(--line-soft); overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(172, 31, 43, 0.1), transparent 60%),
    linear-gradient(165deg, #fdf5f3, #f7e9e6);
}
.portrait-ph::before {
  content: ""; position: absolute; inset: 14px; border-radius: 0.7rem;
  border: 1px solid rgba(138, 17, 25, 0.14); pointer-events: none;
}
/* en une colonne, un cadre vide pleine largeur écraserait la page */
@media (max-width: 1023px) { .portrait-ph { max-width: 420px; margin-inline: auto; } }
.portrait-ph-mono {
  width: 124px; height: 124px; border-radius: 50%; display: grid; place-items: center;
  font-family: "Playfair Display", serif; font-style: italic; font-size: 3.6rem; color: #fff;
  background: var(--grad-red); box-shadow: 0 18px 40px -18px rgba(138, 17, 25, 0.7);
}


/* Contact : la carte du formulaire descend jusqu'au bas de la colonne d'infos,
   c'est le champ message qui absorbe la hauteur en plus */
@media (min-width: 1024px) {
  .form-fill { display: flex; flex-direction: column; height: 100%; }
  .form-fill form { flex: 1; grid-template-rows: auto auto auto 1fr auto; }
  .form-fill .msg-field { display: flex; flex-direction: column; }
  .form-fill .msg-field textarea { flex: 1; min-height: 140px; }
}

/* Badge maison / label */
.badge-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid var(--line); border-radius: 0.6rem; padding: 0.55rem 1rem;
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 700;
  color: var(--red); background: #ffffff;
}
