/* ==========================================================================
   Radieuse Voyages — Feuille de style principale
   Palette : rouge & or (identité du logo), fond crème, texte encre chaude
   ========================================================================== */

:root {
  /* Rouge (dégradé façon médaillon du logo) */
  --red-900: #4a0509;
  --red-800: #650a10;
  --red-700: #810f16;
  --red-600: #9c141b;
  --red-500: #b91c26;
  --red-400: #d92a34;

  /* Or */
  --gold-300: #f6e2a1;
  --gold-400: #eecb6a;
  --gold-500: #e0b23f;
  --gold-600: #c8972a;
  --gold-700: #a67a1f;

  --cream: #fdf8ee;
  --cream-soft: #fbf2de;
  --white: #ffffff;
  --ink: #241512;
  --ink-soft: #5a4741;
  --ink-faint: #8a7972;

  --shadow-soft: 0 10px 30px rgba(74, 5, 9, 0.12);
  --shadow-strong: 0 20px 50px rgba(74, 5, 9, 0.22);

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --font-head: "Playfair Display", "Georgia", serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;

  --header-h: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.65;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
}

/* ---------- Titres de section ---------- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-tag::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--red-600), var(--gold-500));
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 700;
  color: var(--red-800);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-title .accent {
  background: linear-gradient(120deg, var(--gold-600), var(--gold-400) 45%, var(--gold-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-lead {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.section-head {
  text-align: center;
  margin: 0 auto 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-head .section-lead {
  margin-top: 4px;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-500), var(--red-700));
  color: var(--white);
  box-shadow: 0 12px 26px rgba(129, 15, 22, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(129, 15, 22, 0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--red-900);
  box-shadow: 0 12px 26px rgba(200, 151, 42, 0.35);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(200, 151, 42, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.btn-outline {
  border: 1.5px solid var(--red-600);
  color: var(--red-700);
}

.btn-outline:hover {
  background: var(--red-600);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  transition: box-shadow 0.35s ease;
}

/* Le fond flouté vit sur un pseudo-élément plutôt que sur .site-header
   directement : un backdrop-filter posé sur le header ferait de lui le
   repère de positionnement de tout descendant en position:fixed (dont le
   menu mobile plein écran), qui se retrouverait alors calé sur la petite
   hauteur du header au lieu de tout l'écran. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(253, 248, 238, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.35s ease;
}

.site-header.is-scrolled {
  /* Hauteur volontairement inchangée : un header qui change de taille au
     scroll a été la source récurrente d'écarts avec l'espace réservé sous
     lui (le titre du hero pouvait passer dessous pendant la transition). */
  box-shadow: 0 8px 24px rgba(74, 5, 9, 0.1);
}

.site-header.is-scrolled::before {
  background: rgba(253, 248, 238, 0.97);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0; /* autorise le texte à rétrécir/tronquer au lieu de chevaucher les boutons */
  flex-shrink: 1;
}

.brand img {
  height: 56px;
  width: 56px;
  object-fit: cover;
  border-radius: 50%;
  transition: height 0.35s ease, width 0.35s ease;
  box-shadow: 0 4px 14px rgba(74, 5, 9, 0.25);
}

.site-header.is-scrolled .brand img {
  height: 46px;
  width: 46px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.brand-text strong {
  font-family: var(--font-head);
  font-size: 1.28rem;
  color: var(--red-800);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-text span {
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.main-nav a {
  position: relative;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red-600), var(--gold-500));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--red-700);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0; /* les boutons gardent leur taille, c'est le nom de marque qui cède la place */
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--red-800);
}

.header-phone svg {
  width: 17px;
  height: 17px;
  color: var(--gold-600);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1200;
}

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--red-700);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-toggle.open span {
  background: var(--gold-400);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh; /* hauteur réelle visible sur mobile (barre d'adresse exclue) */
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 4, 5, 0.55) 0%, rgba(30, 5, 7, 0.55) 45%, rgba(20, 4, 5, 0.85) 100%),
    linear-gradient(100deg, rgba(129, 15, 22, 0.55), rgba(20, 4, 5, 0.2) 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 60px;
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(238, 203, 106, 0.5);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 26px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 22px;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
}

.hero h1 .accent {
  background: linear-gradient(120deg, var(--gold-300), var(--gold-500) 50%, var(--gold-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 56px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-highlights div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-highlights svg {
  width: 20px;
  height: 20px;
  color: var(--gold-400);
  flex-shrink: 0;
}

.scroll-cue {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.scroll-cue span.dot {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  position: relative;
}

.scroll-cue span.dot::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 3px;
  background: var(--gold-400);
  animation: cueMove 1.8s ease infinite;
}

@keyframes cueMove {
  0% { transform: translate(-50%, 0); opacity: 1; }
  70% { transform: translate(-50%, 14px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}

/* ==========================================================================
   Bande de repères (sous le hero)
   ========================================================================== */

.marquee-strip {
  background: linear-gradient(90deg, var(--red-800), var(--red-600), var(--red-800));
  color: var(--gold-300);
  padding: 14px 0;
  font-family: var(--font-head);
  font-size: 0.98rem;
  letter-spacing: 0.05em;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 32s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  padding: 0 28px;
}

.marquee-track span::after {
  content: "✦";
  margin-left: 28px;
  color: var(--gold-500);
  font-size: 0.8rem;
}

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

/* ==========================================================================
   À propos
   ========================================================================== */

.about {
  padding: 110px 0 90px;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-media {
  position: relative;
  isolation: isolate;
}

.about-media .frame-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 4 / 5;
}

.about-media .frame-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-media .frame-small {
  position: absolute;
  bottom: -38px;
  right: -34px;
  width: 46%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 5px solid var(--cream);
  box-shadow: var(--shadow-strong);
  aspect-ratio: 1 / 1;
  z-index: 2;
}

.about-media .frame-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-media .badge-circle {
  position: absolute;
  top: -26px;
  left: -26px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--red-900);
  font-family: var(--font-head);
  box-shadow: var(--shadow-strong);
  z-index: 3;
  transform: rotate(-8deg);
}

.about-media .badge-circle strong {
  font-size: 1.5rem;
  line-height: 1;
}

.about-media .badge-circle span {
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}

.about-body ul.about-points {
  margin-top: 30px;
  display: grid;
  gap: 18px;
}

.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.96rem;
  color: var(--ink-soft);
}

.about-points .icon-check {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-500), var(--red-700));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-points .icon-check svg {
  width: 15px;
  height: 15px;
  color: var(--gold-300);
}

.about-cta {
  margin-top: 38px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Destinations
   ========================================================================== */

.destinations {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.destinations::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(224, 178, 63, 0.08), transparent 45%),
              radial-gradient(circle at 90% 80%, rgba(129, 15, 22, 0.06), transparent 45%);
  pointer-events: none;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 26px;
  align-items: start;
  position: relative;
}

.dest-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.dest-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-soft);
}

.dest-media img,
.dest-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.dest-card:hover .dest-media img,
.dest-card:hover .dest-media video {
  transform: scale(1.08);
}

.dest-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 4, 5, 0) 55%, rgba(20, 4, 5, 0.45) 100%);
}

.dest-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(253, 248, 238, 0.94);
  color: var(--red-700);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
}

.dest-video-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(253, 248, 238, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dest-video-tag svg {
  width: 14px;
  height: 14px;
  color: var(--red-700);
}

.dest-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 26px;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--red-600), var(--gold-500)) 1;
}

.dest-body .dest-country {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}

.dest-body h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--red-800);
  margin-bottom: 10px;
}

.dest-body p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
  flex: 1;
}

.dest-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red-700);
  border-bottom: 1px solid rgba(129, 15, 22, 0.3);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}

.dest-link:hover {
  color: var(--gold-700);
  border-color: var(--gold-600);
  gap: 12px;
}

.dest-link svg {
  width: 14px;
  height: 14px;
}

.dest-more {
  text-align: center;
  margin-top: 50px;
}

/* ==========================================================================
   Pourquoi nous choisir
   ========================================================================== */

.why {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 26px;
  text-align: left;
  box-shadow: var(--shadow-soft);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--red-600), var(--gold-500)) 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--red-600), var(--red-800));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.why-icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold-300);
}

.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--red-800);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ==========================================================================
   Services
   ========================================================================== */

.services {
  padding: 100px 0;
  background: var(--red-900);
  background-image:
    radial-gradient(circle at 10% 10%, rgba(224, 178, 63, 0.14), transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(224, 178, 63, 0.1), transparent 40%),
    linear-gradient(160deg, var(--red-900), #2d0306 80%);
  color: var(--white);
}

.services .section-tag {
  color: var(--gold-400);
}

.services .section-title {
  color: var(--white);
}

.services .section-lead {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 auto;
}

.services .section-head {
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(238, 203, 106, 0.18);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(238, 203, 106, 0.5);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-icon svg {
  width: 25px;
  height: 25px;
  color: var(--red-900);
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--gold-300);
}

.service-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   Bandeau CTA
   ========================================================================== */

.cta-band {
  padding: 70px 0;
  background: var(--cream);
}

.cta-band .container {
  background: linear-gradient(120deg, var(--gold-400), var(--gold-600));
  border-radius: var(--radius-lg);
  padding: 54px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}

.cta-band .container::after {
  content: "✈";
  position: absolute;
  right: -10px;
  bottom: -30px;
  font-size: 9rem;
  color: rgba(129, 15, 22, 0.08);
  transform: rotate(-15deg);
}

.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--red-900);
  max-width: 480px;
  position: relative;
  z-index: 1;
}

.cta-band-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-band .btn-primary {
  box-shadow: 0 12px 26px rgba(74, 5, 9, 0.3);
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
  padding: 100px 0 110px;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 50px;
  align-items: stretch;
}

.contact-info {
  background: linear-gradient(160deg, var(--red-800), var(--red-900));
  border-radius: var(--radius-lg);
  padding: 46px 40px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.contact-info::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 10%, rgba(224, 178, 63, 0.18), transparent 45%);
  pointer-events: none;
}

.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold-300);
  position: relative;
}

.contact-info p.lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
  position: relative;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-list .ic {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(238, 203, 106, 0.15);
  border: 1px solid rgba(238, 203, 106, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-list .ic svg {
  width: 18px;
  height: 18px;
  color: var(--gold-300);
}

.contact-list .txt {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-list .txt span.label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.contact-list .txt a,
.contact-list .txt span.value {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.25s ease;
}

.contact-list .txt a:hover {
  color: var(--gold-300);
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: auto;
  position: relative;
}

.contact-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.contact-social a:hover {
  background: rgba(238, 203, 106, 0.25);
  transform: translateY(-3px);
}

.contact-social svg {
  width: 18px;
  height: 18px;
  color: var(--gold-300);
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  flex: 1;
}

.contact-form h3 {
  font-family: var(--font-head);
  color: var(--red-800);
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.contact-form > p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #e7dcc4;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-600);
  box-shadow: 0 0 0 4px rgba(224, 178, 63, 0.18);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--ink-faint);
  margin-top: 14px;
  text-align: center;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 240px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: #200206;
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.footer-brand strong {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1.15rem;
  display: block;
}

.footer-brand span {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--gold-300);
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 0.88rem;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-col ul a:hover {
  color: var(--gold-300);
  padding-left: 4px;
}

.footer-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
}

.footer-col ul li svg {
  width: 15px;
  height: 15px;
  color: var(--gold-500);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--gold-400);
}

/* ==========================================================================
   Boutons flottants
   ========================================================================== */

.float-actions {
  position: fixed;
  right: 26px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 900;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-strong);
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.float-btn svg {
  width: 26px;
  height: 26px;
}

.whatsapp-btn {
  background: #25d366;
  color: var(--white);
  position: relative;
}

.whatsapp-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: pulseRing 2.4s ease-out infinite;
  z-index: -1;
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}

.top-btn {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--red-900);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}

.top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-btn:hover,
.top-btn.show:hover {
  transform: translateY(-4px);
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */

/* Le masquage initial ne s'applique que si le JS a pu s'exécuter
   (classe "js" posée tôt sur <html>). Sans JS, le contenu reste
   visible en permanence : pas de section vide par défaut. */
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal {
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

html.js .reveal.in-view {
  /* padding: 10px; */
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1.in-view { transition-delay: 0.1s; }
.reveal-delay-2.in-view { transition-delay: 0.2s; }
.reveal-delay-3.in-view { transition-delay: 0.3s; }
.reveal-delay-4.in-view { transition-delay: 0.4s; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .about-grid { grid-template-columns: 1fr; gap: 90px 0; }
  .about-media { max-width: 460px; margin: 0 auto; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-phone { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.open {
    display: flex;
    position: fixed;
    inset: 0;
    top: 0;
    background: linear-gradient(160deg, var(--red-800), var(--red-900));
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 90px 20px 40px;
    overflow-y: auto; /* si le contenu du menu dépasse un petit écran, il devient scrollable au lieu d'être coupé */
    z-index: 1100;
  }

  .main-nav.open a {
    color: var(--white);
    font-family: var(--font-head);
    font-size: 1.4rem;
  }

  .main-nav.open a::after { display: none; }

  .main-nav.open .nav-cta-mobile {
    display: inline-flex;
    margin-top: 10px;
    padding: 14px 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: var(--red-900) !important;
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    font-weight: 600;
  }

  /* Contenu du hero centré sur mobile : plus équilibré visuellement qu'un
     bloc calé à gauche avec un grand vide à droite. */
  .hero-content { text-align: center; margin: 0 auto; }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-highlights { justify-content: center; gap: 18px; }

  /* Le hero peut devenir plus haut que l'écran une fois son contenu empilé
     (titre + texte + boutons + repères) : on aligne en haut plutôt que de
     centrer, sinon le contenu déborde et vient chevaucher le header. */
  .hero { align-items: flex-start; }
  .scroll-cue { display: none; }
}

.nav-cta-mobile {
  display: none; /* visible uniquement dans le menu plein écran mobile, via .main-nav.open ci-dessus */
}

@media (max-width: 520px) {
  .brand-text span { display: none; }
  .brand-text strong { font-size: 1.05rem; }
  .brand img { height: 44px; width: 44px; }
  .site-header.is-scrolled .brand img { height: 38px; width: 38px; }
  .header-actions { gap: 12px; }
  .header-actions .btn-primary { padding: 11px 18px; font-size: 0.85rem; }
}

@media (max-width: 400px) {
  /* Plus assez de place pour le nom de marque + "Réserver" + le menu sur
     une seule ligne : on retire le bouton du header (le bouton WhatsApp
     flottant et le CTA du menu plein écran prennent le relais). */
  .header-actions .btn-primary { display: none; }
}

@media (max-width: 640px) {
  /* padding-left/right en propriétés longues (pas le raccourci "padding")
     pour ne pas réinitialiser le padding-top/bottom que d'autres règles
     (ex. .hero-content) définissent sur ce même élément .container. */
  .container { padding-left: 18px; padding-right: 18px; }
  .dest-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band .container { padding: 40px 28px; flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }
  .about-media .frame-small { width: 52%; right: -14px; bottom: -24px; }
  .about-media .badge-circle { width: 96px; height: 96px; }
  .contact-info { padding: 36px 26px; }
  .contact-form { padding: 30px 24px; }
}
