/* ============================================
   FIRST CRUISE - Style Premium & Immersif
   Couleurs inspirées du logo : bleus marins
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600;700&family=Dancing+Script:wght@400;600;700&display=swap');

:root {
  --navy-deepest: #0a1e3f;
  --navy-deep: #0d2a4f;
  --navy: #133a6b;
  --blue-royal: #1e5aa8;
  --blue-bright: #2e7dd7;
  --blue-light: #5ba3e0;
  --blue-sky: #a8d4f0;
  --gold: #d4a857;
  --gold-light: #e8c789;
  --cream: #f5efe4;
  --white: #ffffff;
  --foam: rgba(255, 255, 255, 0.85);

  --font-display: 'Cormorant Garamond', serif;
  --font-script: 'Dancing Script', cursive;
  --font-body: 'Inter', sans-serif;

  --transition-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-elegant: cubic-bezier(0.7, 0, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--navy-deepest);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============ CUSTOM CURSOR (desktop) ============ */
.cursor-dot,
.cursor-outline {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
}
.cursor-outline {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(212, 168, 87, 0.5);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
@media (max-width: 968px) {
  .cursor-dot, .cursor-outline { display: none; }
}

/* ============ SAILING SCENE (Bateau naviguant immersif) ============ */
.sailing-scene {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(180deg,
    #1a1f3d 0%,
    #2d3863 25%,
    #5e5077 50%,
    #b3735a 75%,
    #d4a857 100%);
  padding: 0;
}

/* Ciel crépusculaire avec dégradé chaud */
.sailing-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 30, 70, 0.95) 0%,
    rgba(45, 50, 100, 0.7) 20%,
    rgba(120, 80, 110, 0.5) 40%,
    rgba(220, 140, 100, 0.4) 60%,
    rgba(255, 180, 100, 0.3) 75%,
    transparent 100%);
  z-index: 1;
}

/* Soleil couchant */
.sailing-sun {
  position: absolute;
  bottom: 35%;
  left: 18%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle,
    rgba(255, 230, 170, 1) 0%,
    rgba(255, 180, 100, 0.95) 40%,
    rgba(255, 140, 80, 0.6) 70%,
    rgba(255, 100, 60, 0) 100%);
  border-radius: 50%;
  z-index: 2;
  animation: sunPulse 5s ease-in-out infinite alternate;
}
.sailing-sun-glow {
  position: absolute;
  bottom: 33%;
  left: 14%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 200, 140, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(20px);
  animation: sunPulse 5s ease-in-out infinite alternate;
}
@keyframes sunPulse {
  0% { transform: scale(1); opacity: 0.95; }
  100% { transform: scale(1.08); opacity: 1; }
}

/* Étoiles scintillantes côté nuit (haut à gauche) */
.sailing-stars { position: absolute; inset: 0; z-index: 2; }
.sailing-stars .star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 4px #fff;
  animation: twinkle 3s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

/* Îles silhouettes */
.sailing-islands {
  position: absolute;
  bottom: 28%;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  z-index: 3;
}

/* Sillage doré du soleil sur l'eau */
.sailing-light-trail {
  position: absolute;
  bottom: 0;
  left: 12%;
  width: 25%;
  height: 40%;
  background: linear-gradient(180deg,
    rgba(255, 200, 140, 0.45) 0%,
    rgba(255, 180, 100, 0.25) 50%,
    rgba(255, 140, 80, 0) 100%);
  filter: blur(8px);
  z-index: 4;
  pointer-events: none;
  animation: lightShimmer 4s ease-in-out infinite alternate;
}
@keyframes lightShimmer {
  0% { opacity: 0.85; transform: scaleX(1); }
  100% { opacity: 1; transform: scaleX(1.05); }
}

/* BATEAU NAVIGANT */
.sailing-boat {
  position: absolute;
  bottom: 30%;
  left: 30%;
  width: 320px;
  z-index: 6;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.35));
  transform-origin: center;
  /* Animation pause par défaut; déclenchée au scroll */
  animation: boatSailing 6s ease-in-out infinite;
}
.sailing-scene.in-view .sailing-boat {
  animation: boatSailing 6s ease-in-out infinite,
             boatCross 40s linear forwards;
}
.sailing-boat svg {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes boatSailing {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  25% { transform: translateY(-6px) rotate(0.5deg); }
  50% { transform: translateY(-3px) rotate(1.5deg); }
  75% { transform: translateY(-8px) rotate(-0.5deg); }
}

@keyframes boatCross {
  0% { left: 30%; }
  100% { left: 110%; }
}

/* SILLAGE / TRAÎNÉE BLANCHE DERRIÈRE LE BATEAU */
.sailing-wake {
  position: absolute;
  bottom: 28%;
  left: 30%;
  width: 220px;
  height: 18px;
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.7) 95%,
    rgba(255, 255, 255, 0.9) 100%);
  border-radius: 50%;
  filter: blur(5px);
  z-index: 5;
  transform: translateX(-100%);
  opacity: 0;
}
.sailing-scene.in-view .sailing-wake {
  animation: wakeFollow 40s linear forwards;
}
@keyframes wakeFollow {
  0% { left: 30%; transform: translateX(-100%); opacity: 0; }
  3% { opacity: 1; }
  100% { left: 110%; transform: translateX(-100%); opacity: 1; }
}

/* OCÉAN multi-couches */
.sailing-ocean {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  z-index: 5;
  pointer-events: none;
}
.sailing-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
}
.sailing-wave svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.sw-1 { animation: sailingWave 22s linear infinite; bottom: 35%; opacity: 0.35; }
.sw-2 { animation: sailingWave 18s linear infinite reverse; bottom: 20%; opacity: 0.5; }
.sw-3 { animation: sailingWave 14s linear infinite; bottom: 10%; opacity: 0.7; }
.sw-4 { animation: sailingWave 10s linear infinite reverse; bottom: 0; opacity: 0.9; }
.sw-5 { animation: sailingWave 7s linear infinite; bottom: -10px; opacity: 1; }

@keyframes sailingWave {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Particules / embruns lumineux */
.sailing-particles {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
}
.particle {
  position: absolute;
  bottom: 30%;
  width: 3px;
  height: 3px;
  background: rgba(255, 220, 150, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255, 220, 150, 0.6);
  animation: particleFloat 9s ease-in-out infinite;
}
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
  10%, 90% { opacity: 0.8; }
  50% { transform: translateY(-60px) translateX(20px); opacity: 1; }
}

@media (max-width: 768px) {
  .sailing-scene { height: 60vh; min-height: 450px; }
  .sailing-boat { width: 220px; bottom: 32%; }
  .sailing-sun { width: 120px; height: 120px; }
  .sailing-sun-glow { width: 180px; height: 180px; }
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s var(--transition-smooth);
  background: linear-gradient(180deg, rgba(10, 30, 63, 0.4) 0%, rgba(10, 30, 63, 0) 100%);
  backdrop-filter: blur(0px);
}
.nav.scrolled {
  background: rgba(10, 30, 63, 0.85);
  backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(212, 168, 87, 0.15);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--cream);
  text-decoration: none;
  z-index: 1001;
  position: relative;
}
.nav-logo img {
  height: 90px;
  width: auto;
  transition: transform 0.4s var(--transition-smooth);
  position: relative;
  z-index: 2;
}
.nav.scrolled .nav-logo img {
  height: 70px;
}
.nav-logo:hover img {
  transform: scale(1.05);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
  padding: 0.5rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--transition-elegant);
}
.nav-links a:hover {
  color: var(--gold-light);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--gold-light);
}
.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-deepest) !important;
  padding: 0.8rem 1.6rem !important;
  border-radius: 50px;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  transition: all 0.4s var(--transition-smooth) !important;
  box-shadow: 0 4px 20px rgba(212, 168, 87, 0.3);
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 87, 0.5);
  color: var(--navy-deepest) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  z-index: 1001;
  width: 40px;
  height: 40px;
  position: relative;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--cream);
  margin: 6px auto;
  transition: all 0.3s var(--transition-smooth);
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 968px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-logo img { height: 70px; }
  .nav.scrolled .nav-logo img { height: 55px; }
  .menu-toggle { display: block; }

  /* Menu plein écran opaque avec liens centrés */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh; /* dynamic viewport pour iOS Safari */
    background: #0a1e3f;
    background-image:
      radial-gradient(circle at 80% 15%, rgba(212, 168, 87, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 20% 85%, rgba(46, 125, 215, 0.08) 0%, transparent 50%),
      linear-gradient(180deg, #0a1e3f 0%, #0d2a4f 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--transition-elegant);
    z-index: 999;
    padding: 5rem 2rem 2rem;
    opacity: 1;
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--cream);
    padding: 0.5rem 0;
    text-transform: uppercase;
    width: auto;
    text-align: center;
  }
  .nav-links a:hover {
    color: var(--gold-light);
  }
  .nav-links a::after { display: none; } /* pas de soulignement */
  .nav-links a.nav-cta {
    margin-top: 1.5rem;
    padding: 1rem 2.5rem !important;
    font-size: 0.85rem !important;
    font-family: var(--font-body) !important;
    border-radius: 50px;
  }
}

/* ============ HERO IMMERSIF ============ */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #1a4d8f 0%, #0d2a4f 60%, #0a1e3f 100%);
}

/* Ciel et soleil */
.hero-sky {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 25%, rgba(255, 200, 130, 0.3) 0%, rgba(232, 199, 137, 0.1) 25%, transparent 50%),
              linear-gradient(180deg, #2a5d9f 0%, #1a4d8f 40%, #0d2a4f 100%);
  z-index: 1;
}

.hero-sun {
  position: absolute;
  top: 18%;
  right: 18%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 220, 150, 0.95) 0%, rgba(255, 180, 100, 0.5) 35%, rgba(212, 168, 87, 0) 70%);
  border-radius: 50%;
  z-index: 2;
  animation: sunGlow 4s ease-in-out infinite alternate;
}
@keyframes sunGlow {
  0% { transform: scale(1); opacity: 0.85; }
  100% { transform: scale(1.1); opacity: 1; }
}

/* Reflet du soleil sur l'eau */
.hero-reflection {
  position: absolute;
  top: 55%;
  right: 15%;
  width: 200px;
  height: 35%;
  background: linear-gradient(180deg, rgba(255, 220, 150, 0.4) 0%, rgba(255, 200, 130, 0) 100%);
  filter: blur(15px);
  z-index: 3;
  pointer-events: none;
}

/* Nuages */
.cloud {
  position: absolute;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
  border-radius: 50%;
  filter: blur(20px);
  z-index: 2;
}
.cloud-1 { top: 12%; left: 10%; width: 250px; height: 80px; animation: drift 60s linear infinite; }
.cloud-2 { top: 22%; left: 50%; width: 180px; height: 60px; animation: drift 80s linear infinite reverse; animation-delay: -20s; }
.cloud-3 { top: 8%; right: 30%; width: 200px; height: 70px; animation: drift 70s linear infinite; animation-delay: -40s; }

@keyframes drift {
  from { transform: translateX(-100px); }
  to { transform: translateX(calc(100vw + 100px)); }
}

/* Oiseaux */
.bird {
  position: absolute;
  z-index: 3;
  opacity: 0.6;
  animation: fly 25s linear infinite;
}
.bird-1 { top: 15%; left: -50px; animation-delay: 0s; }
.bird-2 { top: 22%; left: -50px; animation-delay: -8s; transform: scale(0.7); }
.bird-3 { top: 18%; left: -50px; animation-delay: -15s; transform: scale(0.85); }

@keyframes fly {
  0% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(30vw) translateY(-15px); }
  50% { transform: translateX(60vw) translateY(10px); }
  75% { transform: translateX(85vw) translateY(-8px); }
  100% { transform: translateX(105vw) translateY(0); }
}

/* OCEAN - SVG vagues animées */
.hero-ocean {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  z-index: 4;
  pointer-events: none;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
}

.wave svg {
  width: 100%;
  height: 100%;
}

.wave-1 {
  animation: waveMove 18s linear infinite;
  opacity: 0.4;
  bottom: -10px;
}
.wave-2 {
  animation: waveMove 12s linear infinite reverse;
  opacity: 0.55;
  bottom: -20px;
}
.wave-3 {
  animation: waveMove 8s linear infinite;
  opacity: 0.75;
  bottom: -30px;
}
.wave-4 {
  animation: waveMove 6s linear infinite reverse;
  opacity: 1;
  bottom: -40px;
}

@keyframes waveMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* BATEAU FLOTTANT */
.hero-boat {
  position: absolute;
  bottom: 28%;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  z-index: 5;
  animation: floatBoat 5s ease-in-out infinite;
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.3));
}
.hero-boat svg {
  width: 100%;
  height: auto;
}
@keyframes floatBoat {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(-1deg); }
  50% { transform: translateX(-50%) translateY(-12px) rotate(1deg); }
}

@media (max-width: 768px) {
  .hero-boat { width: 240px; bottom: 32%; }
  .hero-sun { width: 140px; height: 140px; top: 12%; right: 10%; }
}

/* CONTENU HERO */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 2rem;
  margin-top: -8vh;
  pointer-events: none;
}
.hero-content > * { pointer-events: auto; }

.hero-eyebrow {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUpSlow 1.2s var(--transition-smooth) 0.3s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUpSlow 1.2s var(--transition-smooth) 0.6s forwards;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--cream) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  color: rgba(245, 239, 228, 0.9);
  opacity: 0;
  animation: fadeUpSlow 1.2s var(--transition-smooth) 0.9s forwards;
}
.hero-cta-group {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUpSlow 1.2s var(--transition-smooth) 1.2s forwards;
}
@keyframes fadeUpSlow {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* BOUTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
  border: none;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-deepest);
  box-shadow: 0 10px 30px rgba(212, 168, 87, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 168, 87, 0.6);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s var(--transition-smooth);
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 239, 228, 0.4);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(245, 239, 228, 0.1);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-3px);
}
.btn-arrow {
  display: inline-block;
  transition: transform 0.3s;
}
.btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUpSlow 1s var(--transition-smooth) 2s forwards;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--gold-light));
  position: relative;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--cream);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}
.scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ============ SECTIONS GÉNÉRIQUES ============ */
section {
  position: relative;
  padding: 8rem 2rem;
  overflow: hidden;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}
.section-eyebrow {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
}
.section-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto;
  color: rgba(245, 239, 228, 0.75);
  line-height: 1.7;
}

/* INTRO SECTION */
.intro {
  background: linear-gradient(180deg, var(--navy-deepest) 0%, var(--navy-deep) 100%);
  position: relative;
}
.intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.intro-text h2 em {
  font-style: italic;
  color: var(--gold-light);
}
.intro-text p {
  color: rgba(245, 239, 228, 0.8);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}
.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(212, 168, 87, 0.2);
}
.intro-stat {
  text-align: left;
}
.intro-stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  margin-bottom: 0.3rem;
}
.intro-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.6);
}
.intro-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 600px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--transition-elegant);
}
.intro-image:hover img {
  transform: scale(1.05);
}
.intro-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 30, 63, 0.4) 100%);
  pointer-events: none;
}
.intro-image-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(10, 30, 63, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 168, 87, 0.3);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-script);
  color: var(--gold-light);
  font-size: 1.3rem;
  z-index: 2;
}

@media (max-width: 968px) {
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro-image { height: 400px; }
  .intro-stats { gap: 1rem; }
  .intro-stat-number { font-size: 2.2rem; }
}

/* ============ EXPERIENCES ============ */
.experiences {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  position: relative;
}
.experiences::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(212, 168, 87, 0.05) 0%, transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(46, 125, 215, 0.08) 0%, transparent 40%);
  pointer-events: none;
}
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}
.experience-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 480px;
  cursor: pointer;
  transition: all 0.6s var(--transition-elegant);
  border: 1px solid rgba(212, 168, 87, 0.1);
}
.experience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 30, 63, 0.2) 0%, rgba(10, 30, 63, 0.95) 100%);
  z-index: 2;
  transition: opacity 0.5s;
}
.experience-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--transition-elegant);
}
.experience-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 168, 87, 0.4);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.experience-card:hover img {
  transform: scale(1.1);
}
.experience-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  z-index: 3;
  transform: translateY(40px);
  transition: transform 0.6s var(--transition-elegant);
}
.experience-card:hover .experience-content {
  transform: translateY(0);
}
.experience-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 0.3em;
  margin-bottom: 0.8rem;
  display: block;
}
.experience-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.experience-desc {
  font-size: 0.95rem;
  color: rgba(245, 239, 228, 0.7);
  line-height: 1.6;
  opacity: 0;
  max-height: 0;
  transition: all 0.6s var(--transition-elegant);
  overflow: hidden;
}
.experience-card:hover .experience-desc {
  opacity: 1;
  max-height: 200px;
  margin-bottom: 1rem;
}
.experience-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.experience-link:hover {
  border-color: var(--gold);
}

@media (max-width: 968px) {
  .experiences-grid { grid-template-columns: 1fr; }
  .experience-card { height: 420px; }
}

/* ============ BATEAU SHOWCASE ============ */
.boat-section {
  background: var(--navy-deepest);
  position: relative;
}
.boat-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}
.boat-feature:nth-child(even) > .boat-feature-text {
  order: 2;
}
.boat-feature-image {
  position: relative;
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.boat-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.boat-feature-text h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.boat-feature-text h3 em {
  font-style: italic;
  color: var(--gold-light);
}
.boat-feature-text p {
  color: rgba(245, 239, 228, 0.75);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.boat-features-list {
  list-style: none;
  margin-top: 2rem;
}
.boat-features-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(212, 168, 87, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(245, 239, 228, 0.85);
  font-size: 0.95rem;
}
.boat-features-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.7rem;
}

/* Bulle "Options en plus possibles" */
.options-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
  padding: 0.7rem 1.4rem;
  background: rgba(212, 168, 87, 0.08);
  border: 1px solid rgba(212, 168, 87, 0.4);
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.options-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--transition-smooth);
  z-index: 0;
}
.options-pill > * {
  position: relative;
  z-index: 1;
}
.options-pill:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 168, 87, 0.3);
}
.options-pill:hover::before {
  opacity: 1;
}
.options-pill:hover {
  color: var(--navy-deepest);
}
.options-pill-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.4s var(--transition-smooth);
}
.options-pill:hover .options-pill-plus {
  transform: rotate(90deg);
}
@media (max-width: 968px) {
  .boat-feature { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; }
  .boat-feature:nth-child(even) > .boat-feature-text { order: 1; }
  .boat-feature-image { height: 350px; }
}

/* ============ OPTIONS / SERVICES ============ */
.options {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  position: relative;
}
.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.option-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 168, 87, 0.15);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.5s var(--transition-smooth);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.option-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center top, rgba(212, 168, 87, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}
.option-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 168, 87, 0.4);
  background: rgba(255, 255, 255, 0.05);
}
.option-card:hover::before {
  opacity: 1;
}
.option-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 87, 0.1);
  border-radius: 50%;
  color: var(--gold-light);
  border: 1px solid rgba(212, 168, 87, 0.3);
  transition: all 0.5s;
}
.option-card:hover .option-icon {
  background: var(--gold);
  color: var(--navy-deepest);
  transform: scale(1.1) rotate(360deg);
}
.option-card h4 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.option-card p {
  color: rgba(245, 239, 228, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}
.option-price {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-deepest);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(212, 168, 87, 0.25);
  position: relative;
  z-index: 2;
}

@media (max-width: 968px) {
  .options-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .options-grid { grid-template-columns: 1fr; }
}

/* ============ RESERVATION FORM ============ */
.booking-section {
  background: var(--navy-deepest);
  position: relative;
  padding: 6rem 2rem;
}
.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 0%, rgba(212, 168, 87, 0.08), transparent 60%);
  pointer-events: none;
}
.booking-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.booking-wrapper {
  background: linear-gradient(135deg, rgba(30, 90, 168, 0.15) 0%, rgba(13, 42, 79, 0.4) 100%);
  border: 1px solid rgba(212, 168, 87, 0.2);
  border-radius: 8px;
  padding: 4rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.booking-wrapper::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 168, 87, 0.15), transparent 70%);
  pointer-events: none;
}

.booking-form {
  display: grid;
  gap: 2rem;
}
.form-group {
  display: grid;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 239, 228, 0.15);
  border-radius: 4px;
  padding: 1rem 1.2rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(212, 168, 87, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 239, 228, 0.35);
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e8c789' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  padding-right: 3rem;
}
.form-group select option {
  background: var(--navy-deep);
  color: var(--cream);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
  font-family: var(--font-body);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Experience selection cards */
.experience-select {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.exp-option {
  position: relative;
  cursor: pointer;
}
.exp-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.exp-option-label {
  display: block;
  padding: 1.5rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 239, 228, 0.12);
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}
.exp-option-label-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.exp-option-label-sub {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.5);
}
.exp-option:hover .exp-option-label {
  border-color: rgba(212, 168, 87, 0.4);
  background: rgba(255, 255, 255, 0.06);
}
.exp-option input:checked + .exp-option-label {
  border-color: var(--gold);
  background: rgba(212, 168, 87, 0.12);
}
.exp-option input:checked + .exp-option-label .exp-option-label-title {
  color: var(--gold-light);
}

/* Options checkboxes */
.options-select {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.opt-checkbox {
  position: relative;
  cursor: pointer;
}
.opt-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.opt-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 239, 228, 0.12);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  height: 100%;
  min-height: 70px;
  white-space: normal;
}
.opt-checkbox-label > span:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  flex: 1;
}
.opt-checkbox-label::before {
  content: '';
  width: 18px;
  height: 18px;
  border: 1px solid rgba(245, 239, 228, 0.4);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.opt-name {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.3;
}
.opt-tag {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  text-transform: none;
  background: rgba(212, 168, 87, 0.15);
  padding: 0.15rem 0.55rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 168, 87, 0.3);
  white-space: nowrap;
}
.opt-checkbox-label > span:not(.opt-tag):not(.opt-name) {
  display: flex;
  flex-direction: column;
}
/* Le span englobant nom + tag */
.opt-checkbox-label .opt-name + .opt-tag {
  align-self: flex-start;
}
.opt-checkbox input:checked + .opt-checkbox-label .opt-tag {
  background: var(--gold);
  color: var(--navy-deepest);
  border-color: var(--gold);
}
.opt-checkbox:hover .opt-checkbox-label {
  border-color: rgba(212, 168, 87, 0.4);
}
.opt-checkbox input:checked + .opt-checkbox-label {
  border-color: var(--gold);
  background: rgba(212, 168, 87, 0.1);
  color: var(--gold-light);
}
.opt-checkbox input:checked + .opt-checkbox-label::before {
  background: var(--gold);
  border-color: var(--gold);
  content: '✓';
  color: var(--navy-deepest);
  font-weight: 700;
  font-size: 12px;
}

.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.form-submit .btn {
  min-width: 240px;
  justify-content: center;
}

/* SUCCESS MESSAGE */
.form-success {
  text-align: center;
  padding: 3rem;
  display: none;
}
.form-success.show {
  display: block;
  animation: fadeUpSlow 0.8s var(--transition-elegant);
}
.form-success-icon {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--cream);
  margin-bottom: 1rem;
}
.form-success p {
  color: rgba(245, 239, 228, 0.7);
  max-width: 500px;
  margin: 0 auto;
}

/* ============ FAQ ============ */
.faq-section {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-deepest) 100%);
  position: relative;
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(212, 168, 87, 0.15);
  transition: all 0.4s;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  text-align: left;
  padding: 2rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  transition: color 0.3s;
}
.faq-question:hover {
  color: var(--gold-light);
}
.faq-toggle {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 168, 87, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: all 0.4s var(--transition-smooth);
  font-size: 1.3rem;
}
.faq-item.active .faq-toggle {
  background: var(--gold);
  color: var(--navy-deepest);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--transition-elegant);
  color: rgba(245, 239, 228, 0.75);
  line-height: 1.8;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 2rem;
}
.faq-answer strong {
  color: var(--gold-light);
  font-weight: 500;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-deepest);
  padding: 6rem 2rem 2rem;
  position: relative;
  border-top: 1px solid rgba(212, 168, 87, 0.15);
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 1;
  pointer-events: none;
}
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}
.footer-brand img {
  height: 170px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.footer-brand p {
  color: rgba(245, 239, 228, 0.65);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.8rem;
}
.footer-col a {
  color: rgba(245, 239, 228, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-col a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 168, 87, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(245, 239, 228, 0.5);
  font-size: 0.8rem;
}
.footer-social-tagline {
  color: rgba(245, 239, 228, 0.6);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  max-width: 240px;
}
.footer-social {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.footer-social a,
.footer-social .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(212, 168, 87, 0.3);
  border-radius: 50px;
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s var(--transition-smooth);
  background: rgba(212, 168, 87, 0.05);
}
.footer-social a:hover,
.footer-social .social-link:hover {
  background: var(--gold);
  color: var(--navy-deepest);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 168, 87, 0.3);
}
.footer-social svg {
  flex-shrink: 0;
}
@media (max-width: 968px) {
  .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-content { grid-template-columns: 1fr; }
}

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s var(--transition-elegant), transform 1s var(--transition-elegant);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* PARALLAX */
.parallax-bg {
  will-change: transform;
}

/* ============ PAGE BANNER (inner pages) ============ */
.page-banner {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
  background: linear-gradient(180deg, #1a4d8f 0%, #0d2a4f 100%);
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.page-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 30, 63, 0.4) 0%, var(--navy-deepest) 100%);
}
.page-banner-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}
.page-banner-eyebrow {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.page-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.page-banner-title em {
  font-style: italic;
  color: var(--gold-light);
}
.page-banner-subtitle {
  font-size: 1.05rem;
  color: rgba(245, 239, 228, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
/* Vagues petites au pied du banner */
.page-banner-waves {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 2;
  pointer-events: none;
}

/* ============ GALERIE ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--transition-elegant);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 30, 63, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
@media (max-width: 968px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 0.8rem; }
}

/* Selection */
::selection {
  background: var(--gold);
  color: var(--navy-deepest);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--navy-deepest);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--blue-royal));
  border-radius: 4px;
}

/* ============================================================
   OPTIMISATIONS MOBILE (768px et moins) — DESKTOP INCHANGÉ
   ============================================================ */
@media (max-width: 768px) {

  /* === PROTECTION GLOBALE contre les débordements horizontaux === */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
    width: 100%;
  }
  * {
    max-width: 100vw;
  }
  section {
    overflow-x: hidden;
  }

  /* === HERO : centrage parfait du bloc "Bienvenue à bord" jusqu'à "Découvrir" === */
  .hero-content {
    margin-top: 0;
    padding: 0 1.5rem;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .hero-eyebrow {
    font-size: 1.6rem;
    text-align: center;
    width: 100%;
    margin-bottom: 0.8rem;
  }
  .hero-title {
    font-size: 2.8rem;
    line-height: 1.05;
    margin-bottom: 1.2rem;
    text-align: center;
    width: 100%;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    padding: 0 0.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
  }
  .hero-cta-group {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    align-items: center;
  }
  .hero-cta-group .btn {
    width: 90%;
    max-width: 320px;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 0.78rem;
  }
  .scroll-indicator {
    bottom: 20px;
  }
  .scroll-text {
    font-size: 0.65rem;
  }

  /* === EXPÉRIENCES : 2 colonnes sur mobile === */
  .experiences-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.8rem;
  }
  .experience-card {
    height: 320px;
  }
  .experience-content {
    padding: 1.2rem 1rem;
    transform: translateY(0); /* Toujours visible sur mobile, pas de hover */
  }
  .experience-number {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    margin-bottom: 0.4rem;
  }
  .experience-title {
    font-size: 1.15rem;
    line-height: 1.15;
    margin-bottom: 0.5rem;
  }
  .experience-desc {
    display: none; /* Cachée sur mobile pour ne pas surcharger */
  }
  .experience-link {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }

  /* === OPTIONS : 2 colonnes sur mobile === */
  .options-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.8rem;
  }
  .option-card {
    padding: 1.5rem 1rem;
  }
  .option-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }
  .option-icon svg {
    width: 22px;
    height: 22px;
  }
  .option-card h4 {
    font-size: 1.1rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }
  .option-card p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .option-price {
    font-size: 0.65rem;
    padding: 0.3rem 0.7rem;
    margin-top: 0.8rem;
  }

  /* === BOOKING FORM : version mobile bien dimensionnée === */
  /* CRITICAL : forcer le cadrage strict, pas de débordement */
  .booking-section {
    padding: 3rem 0.8rem !important;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  .booking-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  .booking-wrapper {
    padding: 1.5rem 0.9rem !important;
    border-radius: 6px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
    overflow: hidden;
  }
  .booking-form {
    gap: 1.3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .form-group {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  /* Cartes "Choisissez votre expérience" : 2 colonnes, compactes */
  .experience-select {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.5rem !important;
  }
  .exp-option-label {
    padding: 0.9rem 0.4rem !important;
    min-height: 78px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    border-radius: 6px;
  }
  .exp-option-label-title {
    font-size: 0.72rem !important;
    line-height: 1.15 !important;
    word-break: normal;
    hyphens: none;
    margin-bottom: 0.25rem;
    letter-spacing: 0.01em !important;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--cream);
    font-family: var(--font-body) !important;
  }
  .exp-option-label-sub {
    font-size: 0.5rem !important;
    letter-spacing: 0.08em !important;
    line-height: 1.2;
    text-transform: uppercase;
    opacity: 0.7;
  }

  /* Options checkboxes : 2 colonnes, compactes */
  .options-select {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.5rem !important;
  }
  .opt-checkbox-label {
    padding: 0.75rem 0.55rem !important;
    min-height: 60px !important;
    gap: 0.45rem !important;
    align-items: flex-start;
  }
  .opt-checkbox-label::before {
    width: 14px !important;
    height: 14px !important;
    font-size: 9px !important;
    margin-top: 1px;
  }
  .opt-name {
    font-size: 0.6rem !important;
    letter-spacing: 0.04em !important;
    line-height: 1.25;
  }
  .opt-tag {
    font-size: 0.48rem !important;
    padding: 0.08rem 0.4rem !important;
    margin-top: 0.25rem;
  }

  /* Labels du formulaire ("1. CHOISISSEZ VOTRE EXPÉRIENCE", etc.) */
  .form-group label {
    font-size: 0.6rem !important;
    letter-spacing: 0.12em !important;
    line-height: 1.4;
  }

  /* Champs input/select/textarea */
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.85rem 0.9rem !important;
    font-size: 0.88rem !important;
  }

  /* Rangées de 2 colonnes du formulaire (date/passagers, etc.) */
  .form-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.8rem !important;
  }

  /* Bouton submit */
  .form-submit .btn {
    min-width: 200px;
    padding: 1rem 1.5rem;
    font-size: 0.75rem;
  }

  /* === SECTION HEADERS : aérés sur mobile === */
  section {
    padding: 4rem 1.2rem;
  }
  .section-eyebrow {
    font-size: 1.2rem;
  }
  .section-title {
    font-size: 2rem;
    line-height: 1.15;
  }
  .section-subtitle {
    font-size: 0.95rem;
  }
  .section-header {
    margin-bottom: 3rem;
  }

  /* === INTRO : titre plus lisible === */
  .intro-text h2 {
    font-size: 1.9rem;
  }
  .intro-text p {
    font-size: 0.95rem;
  }
  .intro-stats {
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.8rem;
  }
  .intro-stat-number {
    font-size: 1.8rem;
  }
  .intro-stat-label {
    font-size: 0.65rem;
  }

  /* === BOAT FEATURES === */
  .boat-feature-text h3 {
    font-size: 1.7rem;
  }
  .boat-feature-text p {
    font-size: 0.95rem;
  }
  .boat-features-list li {
    font-size: 0.88rem;
    padding: 0.6rem 0;
  }
  .options-pill {
    font-size: 0.7rem;
    padding: 0.6rem 1.1rem;
  }

  /* === FAQ === */
  .faq-question {
    font-size: 1.1rem;
    padding: 1.5rem 0;
    gap: 1rem;
  }
  .faq-toggle {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  /* === PAGE BANNER === */
  .page-banner {
    min-height: 50vh;
    padding: 6rem 1.2rem 3rem;
  }
  .page-banner-eyebrow {
    font-size: 1.3rem;
  }
  .page-banner-title {
    font-size: 2.2rem;
    line-height: 1.05;
  }
  .page-banner-subtitle {
    font-size: 0.95rem;
  }

  /* === FOOTER === */
  .footer {
    padding: 4rem 1.5rem 1.5rem;
  }
  .footer-brand img {
    height: 110px;
  }
  .footer-col h5 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }
  .footer-social a,
  .footer-social .social-link {
    font-size: 0.75rem;
    padding: 0.6rem 0.9rem;
  }
  .footer-bottom {
    font-size: 0.7rem;
    text-align: center;
    justify-content: center;
  }
}

/* === Très petits écrans (iPhone SE, anciens) === */
@media (max-width: 380px) {
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-subtitle {
    font-size: 0.88rem;
  }
  .experience-card {
    height: 280px;
  }
  .experience-title {
    font-size: 1rem;
  }
  .options-grid,
  .experiences-grid,
  .experience-select,
  .options-select {
    grid-template-columns: 1fr !important;
  }
}
