/* ============================================================
   L'Instant Désir — style.css
   Inspiré de lesgitesdejustine.com
   Fond noir · Or · Majuscules · Slides plein écran
   ============================================================ */

/* ── Variables ── */
:root {
  --black:  #000000;
  --dark:   #0d0d0d;
  --dark2:  #111111;
  --dark3:  #1a1a1a;
  --white:  #ffffff;
  --off:    #e8e2d9;
  --gold:   #C41E3A; /* Passion Red */
  --gold2:  #E32636; /* Bright Red */
  --gold3:  #7E1224; /* Bordeaux */
  --grey:   #888888;
  --grey2:  #555555;
  --r: 50px; /* pill */
  --nav-h: 72px;
  --t: 0.4s cubic-bezier(0.25,0.8,0.25,1);
  --tf: 'Playfair Display', Georgia, serif;
  --ts: 'Montserrat', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ts);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── BOUTONS PILL ── */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--ts);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--t);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover, .btn-gold:active {
  background: var(--gold2);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196,30,58,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  transition: background var(--t);
}
#nav.solid {
  background: rgba(0,0,0,0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196,30,58,0.15);
}

/* Logo circulaire */
.nav-logo {
  flex-shrink: 0;
  z-index: 801;
}
.logo-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 6px 4px;
  text-align: center;
  transition: border-color var(--t);
}
.logo-circle:hover { border-color: var(--gold2); }
.logo-top {
  font-size: 0.36rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}
.logo-script {
  font-family: var(--tf);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold2);
  line-height: 1.1;
}
.logo-bottom {
  font-size: 0.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

/* Liens desktop */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--t);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold2); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 801;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--t);
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile overlay */
.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 799;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px;
}
.mob-menu.open { display: flex; }

.mob-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
}

.mob-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-top: 1px solid rgba(196,30,58,0.15);
}
.mob-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 20px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(196,30,58,0.12);
  transition: color var(--t), background var(--t);
}
.mob-links a:hover, .mob-links a:active {
  color: var(--gold2);
  background: rgba(196,30,58,0.05);
}

.mob-cta {
  margin-top: 32px;
  background: var(--gold);
  color: var(--black);
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: var(--t);
}
.mob-cta:hover { background: var(--gold2); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  /* Centre le contenu sur mobile, bas sur desktop */
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a0d10;
  transform: scale(1.03);
  transition: transform 1.8s cubic-bezier(0.22,1,0.36,1);
}
@media (max-width: 768px) {
  .hero-bg {
    /* L'image horizontale doit remplir l'écran (cover) mais on la décale vers la droite pour voir la croix */
    background-size: cover; 
    background-position: 75% top;
  }
}
body.loaded .hero-bg { transform: scale(1); }

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.5) 0%,
      rgba(0,0,0,0.15) 30%,
      rgba(0,0,0,0.4) 65%,
      rgba(0,0,0,0.9) 100%),
    linear-gradient(90deg,
      rgba(0,0,0,0.5) 0%,
      rgba(0,0,0,0) 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  /* Mobile : centré avec padding symétrique */
  padding: 80px 28px 120px;
  max-width: 680px;
  width: 100%;
}

.hero-tag {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0;
  animation: aUp 0.9s 0.3s ease forwards;
  /* Évite le retour à la ligne en plein milieu d'un mot */
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-content h1 {
  font-family: var(--ts);
  font-size: clamp(1.75rem, 8vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 14px;
  opacity: 0;
  animation: aUp 0.9s 0.5s ease forwards;
}

.hero-num {
  color: var(--gold);
  font-weight: 700;
  margin-right: 4px;
}

.hero-bar {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 14px;
  opacity: 0;
  animation: aUp 0.9s 0.65s ease forwards;
}

.hero-sub {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1.6;
  opacity: 0;
  animation: aUp 0.9s 0.75s ease forwards;
  /* Empêche le découpage brutal des mots composés */
  word-break: normal;
  overflow-wrap: break-word;
}

.hero-desc {
  font-size: 0.92rem;
  color: var(--off);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 420px;
  opacity: 0;
  animation: aUp 0.9s 0.9s ease forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  animation: aUp 0.9s 1.05s ease forwards;
}

/* Indicateur scroll — chevrons tactiles centrés */
.hero-scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  opacity: 0;
  animation: aFade 1s 1.6s ease forwards;
  /* S'assure que l'indicateur ne chevauche pas le texte */
  pointer-events: none;
}
/* Label "DÉFILER" */
.hero-scroll-label {
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(196,30,58,0.6);
  margin-bottom: 6px;
  font-family: var(--ts);
}
/* Trois chevrons qui s'animent en cascade */
.hero-scroll-chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero-scroll-chevrons span {
  display: block;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  margin-bottom: -6px;
  opacity: 0;
}
.hero-scroll-chevrons span:nth-child(1) { animation: chevronFade 1.6s 0s infinite; }
.hero-scroll-chevrons span:nth-child(2) { animation: chevronFade 1.6s 0.2s infinite; }
.hero-scroll-chevrons span:nth-child(3) { animation: chevronFade 1.6s 0.4s infinite; }

/* ══════════════════════════════════════
   SLIDES PLEIN ÉCRAN
══════════════════════════════════════ */
.slide {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.slide-center { align-items: center; justify-content: center; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a1010;
  /* Zoom in au défilement (géré par JS) */
  transform: scale(1.03);
  transition: transform 1.4s cubic-bezier(0.22,1,0.36,1);
}
.slide.in-view .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.1) 0%,
      rgba(0,0,0,0) 30%,
      rgba(0,0,0,0.6) 70%,
      rgba(0,0,0,0.95) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, transparent 65%);
}
.slide-overlay-heavy {
  background: rgba(0,0,0,0.62) !important;
}

/* Contenu texte du slide */
.slide-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 56px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 12px;

  /* Animation d'entrée */
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s ease 0.2s, transform 0.9s cubic-bezier(0.22,1,0.36,1) 0.2s;
}
.slide.in-view .slide-content { opacity: 1; transform: none; }

.pos-left  { align-self: flex-end; }
.pos-right { align-self: flex-end; margin-left: auto; }
.pos-center {
  align-self: center;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  max-width: 700px;
  padding: 0 32px;
}

/* Override overlay pour pos-right : gradient vient de droite */
.slide .pos-right ~ .slide-overlay,
.slide-reverse .slide-overlay {
  background:
    linear-gradient(180deg,rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 30%,rgba(0,0,0,0.6) 70%,rgba(0,0,0,0.95) 100%),
    linear-gradient(270deg,rgba(0,0,0,0.55) 0%,transparent 65%);
}

.slide-num {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
}
.slide-content h2 {
  font-family: var(--ts);
  font-size: clamp(1.5rem, 5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
}
.quote {
  font-family: var(--tf) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
  font-size: clamp(1.4rem, 4.5vw, 2.6rem) !important;
}
.slide-bar {
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.slide-bar-center { margin: 0 auto; }
.slide-strap {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}
.slide-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.slide-desc {
  font-size: 0.88rem;
  color: var(--off);
  font-weight: 300;
  line-height: 1.7;
  max-width: 420px;
}
.pos-center .slide-desc { max-width: 500px; text-align: center; }

/* ══════════════════════════════════════
   SECTIONS COMMUNES
══════════════════════════════════════ */
.section-dark  { background: var(--dark2); }
.section-black { background: var(--black); }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--ts);
  font-size: clamp(1.5rem, 5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.gold-line {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 20px;
}
.section-sub {
  font-size: 0.85rem;
  color: var(--grey);
  font-weight: 300;
  margin-top: 6px;
}

/* Reveal générique */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22,1,0.36,1);
  transition-delay: var(--d, 0ms);
}
.reveal.in-view { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   ÉQUIPEMENTS
══════════════════════════════════════ */
.eq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 960px;
  margin: 0 auto;
}
.eq-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 16px;
  border: 1px solid rgba(196,30,58,0.1);
  text-align: center;
  transition: background var(--t), border-color var(--t);
  cursor: default;
}
.eq-item:hover {
  background: rgba(196,30,58,0.05);
  border-color: rgba(196,30,58,0.3);
}
.eq-icon { font-size: 1.6rem; }
.eq-item p {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 400;
  line-height: 1.4;
}

/* ══════════════════════════════════════
   TARIFS
══════════════════════════════════════ */
.tarifs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.tarif-card {
  background: var(--dark3);
  border: 1px solid rgba(196,30,58,0.14);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  transition: border-color var(--t), transform var(--t);
  flex-wrap: wrap;
}
.tarif-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.tarif-featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #1e1208, var(--dark3));
}

.tarif-best {
  position: absolute;
  top: -11px; left: 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}
.tarif-emoji { font-size: 1.8rem; flex-shrink: 0; }
.tarif-top-info { flex: 1; min-width: 120px; }
.tarif-type {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 2px;
}
.tarif-days { font-size: 0.85rem; color: var(--white); font-weight: 400; }
.tarif-hours { font-size: 0.72rem; color: var(--grey); margin-top: 2px; }
.tarif-price {
  font-family: var(--ts);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-left: auto;
  flex-shrink: 0;
}
.tarif-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--grey2);
  font-style: italic;
}

/* ── Reorganiser le contenu des cartes tarif ── */
.tarif-card > .tarif-emoji { order: 0; }
.tarif-card > .tarif-type { order: 1; }
.tarif-card > .tarif-days { order: 2; }
.tarif-card > .tarif-hours { order: 3; }
.tarif-card > .tarif-price { order: 4; margin-left: auto; }
.tarif-card > .btn-pill { order: 5; flex-shrink: 0; }

/* ══════════════════════════════════════
   PACKS
══════════════════════════════════════ */
.packs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.pack-card {
  background: var(--dark3);
  border: 1px solid rgba(196,30,58,0.12);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: border-color var(--t), transform var(--t);
}
.pack-card:hover { border-color: rgba(196,30,58,0.4); transform: translateY(-2px); }
.pack-premium {
  border-color: var(--gold);
  background: linear-gradient(135deg, #1e1208, var(--dark3));
}
.pack-ribbon {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  background: #922;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
}
.pack-icon-wrap { font-size: 2rem; flex-shrink: 0; padding-top: 2px; }
.pack-body { flex: 1; }
.pack-price-top {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--grey);
  margin-bottom: 8px;
}
.pack-price-gold { color: var(--gold); }
.pack-card h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.pack-card > p, .pack-body > p {
  font-size: 0.85rem;
  color: var(--grey);
  font-weight: 300;
  line-height: 1.65;
}

/* ══════════════════════════════════════
   RÉSERVATION
══════════════════════════════════════ */
.resa-wrap {
  display: flex;
  flex-direction: column-reverse; /* Mobile : Réservation en haut, Contact en bas */
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  gap: 56px;
}

.resa-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.resa-info .section-title,
.resa-info .section-label { text-align: left; }
.resa-info .gold-line { margin-left: 0; }

.contact-blocks { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon { font-size: 1.3rem; flex-shrink: 0; padding-top: 2px; }
.contact-item strong {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item p {
  font-size: 0.88rem;
  color: var(--grey);
  font-weight: 300;
  line-height: 1.6;
}
.contact-item a { color: var(--gold2); }

/* ══════════════════════════════════════
   BOUTONS RÉSERVATION V1 (A la place du form)
══════════════════════════════════════ */
.resa-v1-wrap {
  display: flex;
  flex-direction: column;
}
.resa-v1-desc {
  font-size: 0.95rem;
  color: var(--off);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 500px;
}
.resa-v1-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 380px;
}
.btn-v1 {
  width: 100%;
  padding: 18px;
  font-size: 0.85rem;
}
.resa-v1-note {
  margin-top: 32px;
  padding: 24px;
  border: 1px dashed rgba(196,30,58,0.3);
  border-radius: 12px;
  background: rgba(196,30,58,0.03);
  max-width: 480px;
}
.resa-v1-note p {
  font-size: 0.85rem;
  color: var(--grey);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 8px;
}
.resa-v1-note p:last-child { margin-bottom: 0; }
.resa-v1-note strong { color: var(--gold); font-weight: 500; }

.btn-full-m { width: fit-content; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(196,30,58,0.15);
}
.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 32px 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.footer-logo-wrap { margin-bottom: 8px; }
.footer-logo-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px;
  text-align: center;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 0.82rem;
  color: var(--grey);
  font-weight: 300;
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li, .footer-col ul a {
  font-size: 0.82rem;
  color: var(--grey);
  font-weight: 300;
  line-height: 1.5;
  transition: color var(--t);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  background: var(--black);
  text-align: center;
  padding: 18px 32px;
  font-size: 0.68rem;
  color: var(--grey2);
  letter-spacing: 0.06em;
  border-top: 1px solid rgba(196,30,58,0.08);
}

/* Retour en haut */
.back-top {
  position: fixed;
  bottom: 24px; right: 20px;
  z-index: 700;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t), transform var(--t);
}
.back-top.show { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-3px); }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes aUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes aFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* Animation pour les chevrons tactiles du scroll */
@keyframes chevronFade {
  0%   { opacity: 0;   transform: rotate(45deg) translateY(-4px); }
  40%  { opacity: 1;   transform: rotate(45deg) translateY(0); }
  80%  { opacity: 0.2; transform: rotate(45deg) translateY(4px); }
  100% { opacity: 0;   transform: rotate(45deg) translateY(4px); }
}
@keyframes scrollAnim {
  0%   { opacity: 1; transform: translateY(0); }
  50%  { opacity: 0.3; transform: translateY(10px); }
  100% { opacity: 0; transform: translateY(18px); }
}

/* ══════════════════════════════════════
   TABLETTE ≥ 600px
══════════════════════════════════════ */
@media (min-width: 600px) {
  :root { --nav-h: 80px; }

  #nav { padding: 0 40px; }
  .logo-circle { width: 72px; height: 72px; }

  /* Sur tablette : texte en bas comme le site référence */
  #hero { align-items: flex-end; }
  .hero-content { padding: 0 48px 80px; width: 100%; }

  /* Tarifs : 2 colonnes */
  .tarifs-grid { grid-template-columns: 1fr 1fr; }
  /* Packs : 2 colonnes */
  .packs-grid { grid-template-columns: 1fr 1fr; }
  .pack-card { flex-direction: column; }

  /* Équipements : 3 colonnes */
  .eq-grid { grid-template-columns: repeat(3, 1fr); }

  /* Réservation : côte à côte */
  .resa-wrap { flex-direction: row; align-items: stretch; gap: 64px; }
  .resa-info { flex: 1; }
  .resa-v1-wrap { flex: 1.2; justify-content: flex-start; }
  
  /* Footer */
  .footer-wrap { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════
   DESKTOP ≥ 1024px
══════════════════════════════════════ */
@media (min-width: 1024px) {
  :root { --nav-h: 88px; }

  #nav { padding: 0 56px; }
  .burger { display: none !important; }
  .nav-links { display: flex !important; }

  /* Desktop : texte bien en bas, grand padding */
  #hero { align-items: flex-end; }
  .hero-content { padding: 0 72px 96px; }
  .hero-content h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); }

  /* Équipements : 4 colonnes */
  .eq-grid { grid-template-columns: repeat(4, 1fr); }

  /* Tarifs : 4 colonnes */
  .tarifs-grid { grid-template-columns: repeat(4, 1fr); }
  /* Retour format vertical centré pour desktop */
  .tarif-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 24px;
    gap: 8px;
  }
  .tarif-price { margin-left: 0; }
  .tarif-card > .tarif-type { order: 1; }
  .tarif-card > .tarif-emoji { order: 0; font-size: 2rem; }

  /* Packs */
  .packs-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer 4 colonnes */
  .footer-wrap { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 0 48px; }

  /* Texte slide plus grand */
  .slide-content { padding: 0 60px 72px; max-width: 620px; }
  .pos-center { padding: 0 40px; }
}

@media (min-width: 1280px) {
  #nav { padding: 0 72px; }
  .hero-content { padding: 0 88px 100px; }
  .wrap { padding: 100px 48px; }
  .resa-wrap { padding: 100px 48px; }
}

/* ══════════════════════════════════════
   MOBILE ONLY (< 600px) ajustements
══════════════════════════════════════ */
@media (max-width: 599px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  /* Boutons hero pleine largeur sur mobile */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-pill { width: 100%; text-align: center; }

  /* Texte hero : pas trop serré sur les bords */
  .hero-content { padding: 72px 22px 110px; }

  .slide-content { padding: 0 20px 52px; max-width: 100%; }
  .pos-right { margin-left: 0; }

  .wrap { padding: 52px 18px; }
  .resa-wrap { padding: 52px 18px; }

  .tarif-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto auto;
    align-items: center;
    row-gap: 2px;
    column-gap: 14px;
    padding: 20px 16px;
  }
  .tarif-card > .tarif-emoji { grid-column: 1; grid-row: 1/4; font-size: 2rem; }
  .tarif-card > .tarif-type  { grid-column: 2; grid-row: 1; }
  .tarif-card > .tarif-days  { grid-column: 2; grid-row: 2; }
  .tarif-card > .tarif-hours { grid-column: 2; grid-row: 3; }
  .tarif-card > .tarif-price { grid-column: 3; grid-row: 1/3; margin-left: 0; font-size: 1.8rem; }
  .tarif-card > .btn-pill    { grid-column: 3; grid-row: 3; padding: 8px 14px; font-size: 0.62rem; }
  .tarif-best { left: 14px; }

  .pack-card { flex-direction: row; gap: 16px; }
  .pack-card h3 { font-size: 0.7rem; }

  .footer-wrap { grid-template-columns: 1fr; gap: 32px; }

  .back-top { bottom: 16px; right: 14px; }
}

