
:root {
  --navy: #0d1f3c;
  --navy-light: #162d56;
  --gold: #c8973a;
  --gold-light: #e8b84b;
  --cream: #faf7f2;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #4a5568;
  --ocean: #1a6b8a;
  --ocean-light: #2d9cbe;
  --gap: clamp(4rem, 8vw, 8rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1{
    font-family: var(--serif);
}

h2{
    font-style: italic;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 72px;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

nav ul{
    margin: 0;
}

nav.scrolled {
  background: rgba(13, 31, 60, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(200,151,58,0.2);
}

.logo {
    height: 50px;
    object-fit: contain;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
}
.nav-logo span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
}
.nav-logo span:last-child {
  font-size: 0.6rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Mobile menu button */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.menu-btn span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center;
}
.menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  clip-path: circle(0% at calc(100% - 56px) 36px);
  transition: clip-path 0.7s cubic-bezier(0.77, 0, 0.18, 1);
  pointer-events: none;
}
.mobile-overlay.open {
  clip-path: circle(150% at calc(100% - 56px) 36px);
  pointer-events: all;
}
.mobile-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8973a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.mobile-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.mobile-overlay a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.4;
  transition: color 0.2s, transform 0.2s;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s, color 0.2s;
}
.mobile-overlay.open a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-overlay.open a:nth-child(1) { transition-delay: 0.15s; }
.mobile-overlay.open a:nth-child(2) { transition-delay: 0.2s; }
.mobile-overlay.open a:nth-child(3) { transition-delay: 0.25s; }
.mobile-overlay.open a:nth-child(4) { transition-delay: 0.3s; }
.mobile-overlay.open a:nth-child(5) { transition-delay: 0.35s; }
.mobile-overlay a:hover { color: var(--gold); }

.mobile-cta-wrap {
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s 0.4s, transform 0.4s 0.4s;
}
.mobile-overlay.open .mobile-cta-wrap {
  opacity: 1;
  transform: translateY(0);
}
.mobile-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 2px;
}
.mobile-contact {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s 0.45s, transform 0.4s 0.45s;
}
.mobile-overlay.open .mobile-contact {
  opacity: 1;
  transform: translateY(0);
}
.mobile-contact a {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem !important;
  color: rgba(255,255,255,0.5) !important;
  letter-spacing: 0.05em;
  opacity: 1 !important;
  transform: none !important;
  transition: color 0.2s !important;
  transition-delay: 0s !important;
}
.mobile-contact a:hover { color: var(--gold) !important; }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0d3a5c 0%, #0d1f3c 40%, #071526 100%);
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(26,107,138,0.35) 0%, transparent 70%);
}

/* Animated waves */
.wave-container {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 300px;
  overflow: hidden;
}
.wave {
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 200%;
  height: 100%;
}
.wave svg { width: 100%; height: 100%; }
.wave-1 { animation: wave-move 12s linear infinite; opacity: 0.15; }
.wave-2 { animation: wave-move 18s linear infinite reverse; opacity: 0.08; top: 30px; }
@keyframes wave-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(25%); }
}

/* Hero photo */
.hero-photo {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 65%;
  max-width: 900px;
  height: 85%;
  object-fit: cover;
  object-position: center;
  border-radius: 4px 0 0 4px;
  opacity: 0.45;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 40%, transparent 100%);
}

/* Decorative line */
.hero-line {
  position: absolute;
  left: clamp(1.5rem, 5vw, 4rem);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: clamp(1.5rem, 5vw, 4rem);
  padding-bottom: clamp(4rem, 10vh, 7rem);
  max-width: 680px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-desc {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(200,151,58,0.3);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,151,58,0.4);
}
.btn-primary svg { width: 16px; height: 16px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  transition: color 0.2s;
  padding: 1rem 0;
}
.btn-ghost:hover { color: var(--white); }

/* Hero stats */
.hero-stats {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 3rem);
  right: clamp(1.5rem, 5vw, 4rem);
  display: flex;
  gap: 2.5rem;
  z-index: 10;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 10;
  animation: fade-up 2s ease-in-out infinite;
}
.scroll-hint-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes fade-up {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.8; transform: translateX(-50%) translateY(-5px); }
}

/* ─── SECTION GENERIC ─── */
section { padding: var(--gap) clamp(1.5rem, 5vw, 4rem); }

.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-label span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.1;
}
h2 em { font-style: italic; }

/* ─── BATEAU ─── */
.bateau-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.bateau-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,107,138,0.06) 0%, transparent 70%);
}
.bateau-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.bateau-visual {
  position: relative;
}
.bateau-img-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy);
}
.bateau-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200,151,58,0.2);
  border-radius: 4px;
  pointer-events: none;
}
.bateau-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: rgba(255,255,255,0.15);
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
}
.bateau-badge {
  position: absolute;
  top: -20px; right: -20px;
  width: 100px; height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(200,151,58,0.4);
}
.bateau-badge span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.bateau-badge span:last-child {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
.bateau-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.spec-card {
  background: var(--cream);
  padding: 1rem 1.2rem;
  border-radius: 2px;
  border-left: 2px solid var(--gold);
}
.spec-card strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.spec-card span {
  font-size: 0.72rem;
  color: var(--text-mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bateau-text h2 { margin-bottom: 1.5rem; }
.bateau-text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.equip-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.equip-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-dark);
}
.equip-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── CIRCUITS ─── */
.circuits-section {
  background: var(--cream);
  position: relative;
}
.circuits-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}
.circuits-header h2 { max-width: 500px; }
.circuits-header p {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
  max-width: 340px;
  text-align: right;
}

.circuits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  border-radius: 4px;
  overflow: hidden;
}
.circuit-card {
  position: relative;
  background: var(--navy);
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.circuit-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.circuit-card:hover .circuit-card-bg { transform: scale(1.06); }
.bg-porquerolles {
  background: linear-gradient(160deg, #1a6b8a 0%, #0d3a5c 60%, #071526 100%);
}
.bg-portcros {
  background: linear-gradient(160deg, #1a4a2e 0%, #0d2a1a 60%, #071010 100%);
}
.bg-giens {
  background: linear-gradient(160deg, #3a2a1a 0%, #1a0d0d 60%, #070507 100%);
}
.bg-sunset {
  background: linear-gradient(160deg, #5a2a0a 0%, #2a1206 60%, #071010 100%);
}
.bg-electric {
  background: linear-gradient(160deg, #0d3a5a 0%, #07202a 60%, #050f15 100%);
}
.bg-carte {
  background: linear-gradient(160deg, #1a1a3a 0%, #0d0d2a 60%, #050510 100%);
}

.circuit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,16,38,0.9) 0%, rgba(7,16,38,0.2) 60%, transparent 100%);
}
.circuit-card-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
}
.circuit-tag {
  display: inline-block;
  background: rgba(200,151,58,0.2);
  border: 1px solid rgba(200,151,58,0.4);
  color: var(--gold-light);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 1px;
  margin-bottom: 0.7rem;
}
.circuit-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.circuit-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.circuit-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}
.circuit-price .from {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.circuit-price .amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
}
.circuit-price .unit {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
}
.circuit-arrow {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 36px; height: 36px;
  border: 1px solid rgba(200,151,58,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s;
  color: rgba(255,255,255,0.5);
}
.circuit-card:hover .circuit-arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* Wide card */
.circuit-card.wide {
  grid-column: span 2;
  aspect-ratio: unset;
  padding-bottom: 0;
}
.circuit-card.wide .circuit-card-content {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  justify-content: space-between;
}
.circuit-card.wide h3 { font-size: 2rem; }

.circuits-cta {
  max-width: 1200px;
  margin: 3rem auto 0;
  text-align: center;
}

/* ─── SUNSET CTA ─── */
.sunset-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 500px;
  display: flex;
  align-items: center;
}
.sunset-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0800 0%, #3d1a05 30%, #7a3510 60%, #c86020 80%, #e8a020 100%);
  overflow: hidden;
}
.sunset-orb {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,32,0.4) 0%, rgba(200,96,32,0.2) 40%, transparent 70%);
}
.sunset-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--gap) clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.sunset-text h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.sunset-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 480px;
}
.sunset-action {
  flex-shrink: 0;
  text-align: center;
}
.sunset-price {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}
.sunset-price small {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── POURQUOI ─── */
.pourquoi-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.pourquoi-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8973a' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.pourquoi-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.pourquoi-header {
  text-align: center;
  margin-bottom: 4rem;
}
.pourquoi-header h2 { color: var(--white); }

.atouts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.atout {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(200,151,58,0.1);
  border-radius: 2px;
  transition: border-color 0.3s, background 0.3s;
}
.atout:hover {
  border-color: rgba(200,151,58,0.3);
  background: rgba(200,151,58,0.04);
}
.atout-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(200,151,58,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
}
.atout h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.atout p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.8;
}

/* ─── CAPITAINE ─── */
.capitaine-section {
  background: var(--cream);
}
.capitaine-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.capitaine-text h2 { margin-bottom: 1.5rem; }
.capitaine-text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.capitaine-quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.capitaine-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.6;
}
.capitaine-visual {
  position: relative;
}
.cap-img-wrap {
  aspect-ratio: 3/4;
  background: var(--navy);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy) 100%);
}
.cap-img-wrap svg {
  width: 80px; height: 80px;
  color: rgba(200,151,58,0.2);
}
.cap-tag {
  position: absolute;
  bottom: -1rem; left: -1rem;
  background: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: 2px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.cap-tag strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
}
.cap-tag span {
  font-size: 0.72rem;
  color: var(--text-mid);
  letter-spacing: 0.05em;
}
.brevets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.brevet {
  background: var(--cream);
  border: 1px solid rgba(200,151,58,0.3);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: 1px;
}

/* ─── RÉSERVATION CTA ─── */
.resa-section {
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.resa-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,151,58,0.08) 0%, transparent 70%);
}
.resa-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.resa-inner h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}
.resa-inner p {
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-size: 1rem;
}
.resa-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(200,151,58,0.4);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: rgba(200,151,58,0.1);
  border-color: var(--gold);
}
.contact-bar {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.contact-item:hover { color: var(--gold); }
.contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ─── AVIS ─── */
.avis-section { background: var(--white); }
.avis-inner { max-width: 1200px; margin: 0 auto; }
.avis-header { text-align: center; margin-bottom: 3rem; }
.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.avis-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
}
.avis-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: rgba(200,151,58,0.1);
  line-height: 1;
}
.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.avis-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.avis-author {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.05em;
}
.avis-circuit {
  font-size: 0.68rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── FOOTER ─── */
footer {
  background: #070f1e;
  padding: 4rem clamp(1.5rem, 5vw, 4rem) 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand {}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 0.3rem;
}
.footer-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.2rem;
}
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  line-height: 1.9;
  max-width: 240px;
}
.footer-col h5 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.2s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .atouts-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .bateau-grid { grid-template-columns: 1fr; }
  .bateau-visual { order: -1; }
  .capitaine-grid { grid-template-columns: 1fr; }
  .circuits-grid { grid-template-columns: 1fr; }
  .circuit-card.wide { grid-column: span 1; }
  .circuit-card.wide .circuit-card-content { flex-direction: column; gap: 1rem; }
  .avis-grid { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .circuits-header { flex-direction: column; }
  .circuits-header p { text-align: left; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .equip-list { grid-template-columns: 1fr; }
  .bateau-specs { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .sunset-content { flex-direction: column; text-align: center; }
  .atouts-grid { grid-template-columns: 1fr; }
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.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; }






















































/* CONTENU */
/* ============================================
   SECTIONS CONTENU CMS
   ============================================ */

.block-contenu {
    padding: 0;
    overflow-x: hidden;
}

.block-contenu section {
    padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
    position: relative;
    overflow: hidden;
}

/* Alternance des sections */
.block-contenu section:nth-child(even) {
    background-color: var(--navy, #0d1f3c) !important;
}

.block-contenu section:nth-child(odd) {
    background-color: var(--cream, #faf7f2) !important;
}

/* Container pour le contenu */
.block-contenu .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.block-contenu .container h2.text-center {
    text-align: center;
    margin-bottom: 3rem;
}

/* Lignes décoratives pour les titres de section */
.block-contenu section h2 {
    position: relative;
    margin-bottom: 1.5rem;
}

.block-contenu section h2::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold, #c8973a);
}

.block-contenu section.text-image h2::before,
.block-contenu section .text-center + h2::before {
    left: 50%;
    transform: translateX(-50%);
}

/* Row alignment */
.block-contenu .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /*gap: 2rem;*/
}

.block-contenu .row.align-items-center {
    align-items: center;
}

.block-contenu .image-text,
.block-contenu .text-image {
    max-width: 1200px;
    margin: 0 auto;
}

.block-contenu .col-md-4,
.block-contenu .col-md-8 {
    flex: 1;
    min-width: 280px;
}

.block-contenu .col-md-4 {
    flex: 0 0 calc(33.333% - 2rem);
}

.block-contenu .col-md-8 {
    flex: 0 0 calc(66.666% - 2rem);
}

/* Images */
.block-contenu img {
    width: 100%;
    height: auto;
    min-height: 350px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}



/* Typographie */
.block-contenu h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.block-contenu .texte {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    margin: 1.5rem 0;
}

.block-contenu .texte p {
    margin-bottom: 1rem;
}

.block-contenu .texte ul,
.block-contenu .texte ol {
    margin: 1rem 0 1rem 1.5rem;
    padding-left: 0;
}

.block-contenu .texte li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Boutons */
.block-contenu .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.block-contenu .btn-primary {
    background: var(--gold, #c8973a);
    color: var(--navy, #0d1f3c);
    box-shadow: 0 4px 12px rgba(200, 151, 58, 0.2);
}

.block-contenu .btn-primary:hover {
    background: var(--gold-light, #e8b84b);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 151, 58, 0.3);
}

.block-contenu .btn-add {
    background: var(--gold, #c8973a);
    color: var(--navy, #0d1f3c);
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    font-size: 0.75rem;
}

.block-contenu .btn-add:hover {
    background: var(--gold-light, #e8b84b);
    transform: translateY(-2px);
}

/* Cards */
.block-contenu .card-contenu {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.block-contenu .card {
    background: var(--white, #ffffff);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.block-contenu .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.block-contenu .card-img-top {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.block-contenu .card:hover .card-img-top {
    transform: scale(1.05);
}

.block-contenu .card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.block-contenu .card-text {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex: 1;
}

.block-contenu .card-text p {
    margin: 0;
}

/* Bouton delete (admin) */
.block-contenu .delete-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    border: none;
}

.block-contenu .delete-btn:hover {
    background: #e74c3c;
    color: white;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .block-contenu .col-md-4,
    .block-contenu .col-md-8 {
        flex: 0 0 100%;
    }
    
    .block-contenu .row {
        flex-direction: column;
    }
    
    .text-image{
        flex-direction: column-reverse !important;
    }
    
    .block-contenu .row h2{
        text-align: center;
    }
    
    .block-contenu .text-image .row {
        flex-direction: column-reverse;
    }
    
    .block-contenu section h2::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .block-contenu .image-text img,
    .block-contenu .text-image img {
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .block-contenu section {
        padding: 3rem 1.5rem;
    }
    
    .block-contenu .card-contenu {
        gap: 1.5rem;
    }
    
    .block-contenu .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .block-contenu .image-text img,
    .block-contenu .text-image img {
        max-width: 100%;
    }
    
    .block-contenu .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .block-contenu h2 {
        font-size: 1.6rem;
    }
    
    .block-contenu .texte {
        font-size: 0.9rem;
    }
    
    .block-contenu .card-body {
        padding: 1rem;
    }
    
    .block-contenu .card-text {
        font-size: 0.85rem;
    }
}


.block-contenu section.visible {
    opacity: 1;
    transform: translateY(0);
}


























































:root{
  --navy:#0D2340;--navy-dark:#071526;--navy-mid:#163560;
  --gold:#C9903A;--gold-lt:#E0A84A;--gold-dk:#A87830;
  --cream:#FAF7F0;--silk:#F4EFE3;--white:#FFFFFF;
  --text:#1A2033;--muted:#5A6577;
  --serif:'Cormorant Garamond',Georgia,serif;
  --sans:'Montserrat',sans-serif;
  --r-btn:50px;--r-card:12px;
  --shadow:0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:0 20px 60px rgba(0,0,0,0.18);
  --px:clamp(1.25rem,5vw,4rem);--gap:clamp(4rem,8vw,6rem);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--sans);background:var(--cream);color:var(--text);overflow-x:hidden;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
::-webkit-scrollbar{width:3px}
::-webkit-scrollbar-track{background:var(--navy-dark)}
::-webkit-scrollbar-thumb{background:var(--gold)}
 
/* ── HELPERS ── */
.eyebrow{display:inline-flex;align-items:center;gap:10px;font-family:var(--sans);font-size:.65rem;font-weight:600;letter-spacing:.22em;text-transform:uppercase;color:var(--gold)}
.eyebrow::before{content:'';width:28px;height:1px;background:var(--gold);flex-shrink:0}
.section-title{font-family:var(--serif);font-size:clamp(2rem,4.5vw,3.2rem);font-weight:400;line-height:1.12;color:var(--navy)}
.section-title em{font-style:italic;color:var(--gold-dk)}
.gold-divider{display:flex;align-items:center;justify-content:center;gap:16px;margin-bottom:1.2rem}
.gold-divider::before,.gold-divider::after{content:'';flex:1;max-width:80px;height:1px;background:var(--gold);opacity:.5}
.gold-divider span{font-family:var(--serif);font-size:1.8rem;color:var(--gold);line-height:1}
.sec-center{text-align:center;margin-bottom:clamp(2rem,4vw,3.5rem)}
section{padding:var(--gap) var(--px)}
 
/* ── BUTTONS ── */
.btn{display:inline-flex;align-items:center;gap:8px;font-family:var(--sans);font-size:.75rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;padding:.95rem 2rem;border-radius:var(--r-btn);cursor:pointer;transition:all .3s cubic-bezier(.23,1,.32,1);border:none;white-space:nowrap}
.btn svg{flex-shrink:0;width:14px;height:14px}
.btn-gold{background:var(--gold);color:var(--white);box-shadow:0 4px 18px rgba(201,144,58,.4)}
.btn-gold:hover{background:var(--gold-lt);transform:translateY(-2px);box-shadow:0 8px 28px rgba(201,144,58,.5)}
.btn-navy{background:var(--navy);color:var(--white);box-shadow:0 4px 18px rgba(0,0,0,.3)}
.btn-navy:hover{background:#FFF;transform:translateY(-2px)}
.btn-ghost-w{background:rgba(255,255,255,.08);color:var(--white);border:1.5px solid rgba(255,255,255,.6);backdrop-filter:blur(8px)}
.btn-ghost-w:hover{background:rgba(255,255,255,.18);border-color:var(--white);transform:translateY(-2px)}
.btn-outline-g{background:transparent;color:var(--gold);border:1.5px solid var(--gold)}
.btn-outline-g:hover{background:var(--gold);color:var(--white);transform:translateY(-2px)}
 
 
/* ── HERO ── */
#hero{position:relative;height:100svh;min-height:640px;display:flex;align-items:center;overflow:hidden;padding:0}
.hero-bg{position:absolute;inset:0;background:url('../../admin/img/slider/69d61bfe2df59--1200.webp') center/cover no-repeat,linear-gradient(155deg,#0c3a5e,#001A35);transition:transform 8s ease-out}
#hero:hover .hero-bg{transform:scale(1.04)}
.hero-ov{position:absolute;inset:0;background:linear-gradient(100deg,rgba(7,21,38,.82) 0%,rgba(7,21,38,.55) 45%,rgba(7,21,38,.15) 100%)}
.hero-ov::after{content:'';position:absolute;bottom:0;left:0;right:0;height:200px;background:linear-gradient(to top,rgba(7,21,38,.6),transparent)}
.hero-inner{position:relative;z-index:5;padding:0 var(--px);padding-top:72px;max-width:680px}
.hero-eyebrow{display:flex;align-items:center;gap:10px;margin-bottom:1.4rem;font-family:var(--sans);font-size:.65rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:var(--gold)}
.hero-eyebrow::before{content:'';width:28px;height:1px;background:var(--gold)}
#hero h1{font-family:var(--serif);font-size:clamp(2.8rem,7vw,5rem);font-weight:400;line-height:1.08;color:var(--white);margin-bottom:1.3rem}
#hero h1 em{font-style:italic;color:var(--gold-lt)}
.hero-desc{font-size:clamp(.85rem,1.5vw,1rem);font-weight:300;color:rgba(255,255,255,.78);line-height:1.8;max-width:480px;margin-bottom:2.4rem}
.hero-btns{display:flex;gap:1rem;flex-wrap:wrap;align-items:center}
.hero-stats{position:absolute;bottom:2.5rem;right:var(--px);display:flex;gap:2.5rem;z-index:5}
.hstat-n{font-family:var(--serif);font-size:1.9rem;font-weight:400;color:var(--white);line-height:1}
.hstat-l{font-size:.58rem;font-weight:500;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.45);margin-top:4px}
.scroll-c{position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);display:flex;flex-direction:column;align-items:center;gap:6px;color:rgba(255,255,255,.3);font-size:.55rem;letter-spacing:.2em;text-transform:uppercase;z-index:5;animation:scl 2.2s ease-in-out infinite}
.scroll-c-line{width:1px;height:36px;background:linear-gradient(to bottom,rgba(255,255,255,.4),transparent)}
@keyframes scl{0%,100%{opacity:.3;transform:translateX(-50%) translateY(0)}50%{opacity:.7;transform:translateX(-50%) translateY(-5px)}}
 
/* ── PROOF BAND ── */
#proof{background:var(--white);border-top:3px solid var(--gold);padding:2.2rem var(--px);text-align:center}
.proof-stars,.proof-stars-b{display:flex;justify-content:center;gap:5px}
.proof-stars svg,.proof-stars-b svg{width:20px;height:20px;color:var(--gold)}
.proof-stars-b svg{width:17px;height:17px}
.proof-cnt{font-family:var(--sans);font-size:.78rem;font-weight:600;color:var(--gold);letter-spacing:.08em;margin:.6rem 0 1rem}
.proof-cnt span{color:var(--navy);font-weight:700}
.proof-q{font-family:var(--serif);font-size:clamp(1.2rem,2.5vw,1.7rem);font-style:italic;font-weight:300;color:var(--navy);max-width:780px;margin:0 auto 1rem;line-height:1.45}
.proof-q::before{content:'\201C';color:var(--gold);margin-right:4px}
.proof-q::after{content:'\201D';color:var(--gold);margin-left:4px}
 
/* ── EXPERIENCE SPLIT ── */
#experience{background:var(--cream)}
.exp-grid{max-width:1240px;margin:0 auto;display:grid;grid-template-columns:1fr 1.05fr;gap:clamp(3rem,7vw,5rem);align-items:center}
.exp-photo{width:100%;aspect-ratio:4/3;border-radius:var(--r-card);overflow:hidden;box-shadow:var(--shadow-lg);background:url('https://webmize.fr/projets/private-boat/assets/img/contenu-circuits-bateau-hyeres/69ff4c8feca63--1000.webp') center/cover no-repeat,linear-gradient(135deg,#1a6b8a,#001A35)}
.exp-text .eyebrow{margin-bottom:1rem}
.exp-text h2{margin-bottom:1.4rem}
.exp-text p{font-size:.93rem;font-weight:300;color:var(--muted);line-height:1.9;margin-bottom:1.3rem}
.specs-bar{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;padding:1.5rem 0 1.8rem;border-top:1px solid rgba(201,144,58,.18);border-bottom:1px solid rgba(201,144,58,.18);margin:1.5rem 0 2rem}
.spec-item{text-align:center}
.spec-icon-w{width:52px;height:52px;margin:0 auto .6rem;background:rgba(201,144,58,.1);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--gold);transition:transform .3s}
.spec-item:hover .spec-icon-w{transform:translateY(-3px)}
.spec-icon-w svg{width:22px;height:22px}
.spec-lbl{font-family:var(--sans);font-size:.65rem;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:var(--navy);display:block}
 
/* ── BATEAU ── */
#bateau{background:var(--silk)}
.bateau-inner{max-width:1240px;margin:0 auto}
.bateau-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:clamp(3rem,6vw,5rem);align-items:center;margin-top:3rem}
.bateau-photo{border-radius:var(--r-card);overflow:hidden;box-shadow:var(--shadow-lg);aspect-ratio:4/4;background:url('https://webmize.fr/projets/private-boat/assets/img/contenu-bateau-privatisation-hyeres/6a0209cc83723--1000.webp') center/cover no-repeat,linear-gradient(135deg,var(--navy-mid),var(--navy))}
.bateau-det h3{font-family:var(--serif);font-size:1.5rem;font-weight:400;color:var(--navy);margin-bottom:1rem}
.bateau-det p{font-size:.9rem;font-weight:300;color:var(--muted);line-height:1.85;margin-bottom:1.5rem}
.specs-row{display:grid;grid-template-columns:repeat(4,1fr);gap:.7rem;margin-bottom:1.8rem}
.sc{background:var(--white);padding:.9rem;border-radius:8px;border-left:3px solid var(--gold);text-align:center}
.sc b{display:block;font-family:var(--serif);font-size:1.3rem;font-weight:600;color:var(--navy);line-height:1}
.sc small{font-size:.62rem;color:var(--muted);letter-spacing:.08em;text-transform:uppercase}
.specs-icons{display:flex;flex-wrap:wrap;gap:1rem;padding:1.4rem;background:var(--white);border-radius:var(--r-card);border:1px solid rgba(201,144,58,.15);margin-bottom:1.8rem}
.si{display:flex;align-items:center;gap:8px;font-size:.78rem;font-weight:500;color:var(--navy)}
.si-ic{width:36px;height:36px;background:rgba(201,144,58,.12);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--gold);flex-shrink:0}
.si-ic svg{width:16px;height:16px}
 
/* ── EXCURSIONS 4 cards ── */
#excursions{background:var(--white)}
.exc-grid {
  max-width: 1240px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.exc-card:nth-child(1),
.exc-card:nth-child(2),
.exc-card:nth-child(3) {
  grid-column: span 2;
}

.exc-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.exc-card:nth-child(5) {
  grid-column: 4 / span 2;
}
/* Badge post-it sur les cartes phares */
.exc-card--popular {
  position: relative;
}

.exc-card--popular::before {
  content: '⭐ Nos plus demandés';
  position: absolute;
  top: 14px;
  right: -6px;
  z-index: 10;
  background: var(--gold);
  color: var(--navy-dark, #071526);
  font-family: var(--sans, 'Montserrat', sans-serif);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .85rem .35rem .7rem;
  border-radius: 3px 0 0 3px;
  box-shadow: 2px 2px 8px rgba(0,0,0,.25);
  white-space: nowrap;
}

/* Petite oreille droite façon ruban */
.exc-card--popular::after {
  content: '';
  position: absolute;
  top: calc(14px + 1.4rem);
  right: -6px;
  z-index: 9;
  border-top: 6px solid var(--gold-dk, #A87830);
  border-right: 6px solid transparent;
}
.exc-card{border-radius:var(--r-card);overflow:hidden;position:relative;cursor:pointer;text-decoration:none;display:block;box-shadow:var(--shadow);transition:transform .4s cubic-bezier(.23,1,.32,1),box-shadow .4s}
.exc-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg)}
.exc-bg{width:100%;height:220px;transition:transform .55s cubic-bezier(.23,1,.32,1)}
.exc-card:hover .exc-bg{transform:scale(1.06)}
.exc-bg1{background:linear-gradient(160deg,#1a8ab5 0%,#0d4a70 50%,#071f35 100%)}
.exc-bg2{background:linear-gradient(160deg,#2a8a60 0%,#0d4030 50%,#051510 100%)}
.exc-bg3{background:linear-gradient(160deg,#c87a20 0%,#7a3e08 50%,#2a1504 100%)}
.exc-bg4{background:linear-gradient(160deg,#8a4a10 0%,#4a2005 50%,#150a02 100%)}
.exc-ov{position:absolute;inset:0;background:linear-gradient(to top,rgba(7,21,38,.88) 0%,rgba(7,21,38,.3) 45%,transparent 100%)}
.exc-body{position:absolute;bottom:0;left:0;right:0;padding:1.3rem}
.exc-tag{display:inline-block;margin-bottom:.5rem;background:rgba(201,144,58,.2);border:1px solid rgba(201,144,58,.4);color:#e8bf7a;font-size:.58rem;letter-spacing:.14em;text-transform:uppercase;padding:3px 8px;border-radius:3px}
.exc-card h3{font-family:var(--serif);font-size:1.25rem;font-weight:400;color:var(--white);line-height:1.2;margin-bottom:.7rem}
.exc-btn-sm{display:inline-flex;align-items:center;gap:6px;background:var(--gold);color:var(--white);font-family:var(--sans);font-size:.65rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;padding:.5rem 1.1rem;border-radius:var(--r-btn);transition:background .25s,transform .25s}
.exc-card:hover .exc-btn-sm{background:var(--gold-lt);transform:translateX(3px)}
.exc-btn-sm svg{width:11px;height:11px}
.exc-cta{text-align:center;margin-top:2.5rem}
 
/* ── SUNSET BAND ── */
#sunset{position:relative;overflow:hidden;background:linear-gradient(135deg,#0c0400 0%,#3b1804 30%,#7a3210 55%,#c06020 80%,#e8a025 100%)}
.sunset-orb{position:absolute;bottom:-100px;left:50%;transform:translateX(-50%);width:600px;height:600px;border-radius:50%;background:radial-gradient(circle,rgba(232,160,37,.3) 0%,transparent 65%)}
.sunset-grid{max-width:1240px;margin:0 auto;position:relative;z-index:2;display:grid;grid-template-columns:1fr auto;gap:3rem;align-items:center}
.sunset-text h2{color:var(--white);margin-bottom:.9rem}
.sunset-text p{font-size:.95rem;font-weight:300;color:rgba(255,255,255,.72);line-height:1.85;max-width:520px}
.sunset-cta-box{flex-shrink:0;text-align:center}
.sunset-price{display:block;font-family:var(--serif);font-size:3rem;font-weight:300;color:var(--white);line-height:1;margin-bottom:1.2rem}
.sunset-price small{display:block;font-family:var(--sans);font-size:.66rem;font-weight:500;color:rgba(255,255,255,.45);letter-spacing:.12em;text-transform:uppercase;margin-bottom:4px}
 
/* ── GALERIE ── */
#galerie{background:var(--cream)}
.gal-grid{max-width:1240px;margin:0 auto 2.5rem;display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr .8fr;gap:12px}
.gal-item{border-radius:var(--r-card);overflow:hidden;box-shadow:var(--shadow);transition:transform .3s,box-shadow .3s;cursor:pointer}
.gal-item:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.gal-bg{height:260px;transition:transform .5s cubic-bezier(.23,1,.32,1)}
.gal-item:hover .gal-bg{transform:scale(1.06)}
.gb1{background:linear-gradient(155deg,#0d4a6e,#1a8ab5 50%,#2daed5)}
.gb2{background:linear-gradient(155deg,#1a5a3a,#2a8a60 50%,#40b080)}
.gb3{background:linear-gradient(155deg,#5a3a0a,#c87a20 60%,#e8a030)}
.gb4{background:linear-gradient(155deg,#001A35,#0d3a5e 60%,#1a6a9a)}
.gb5{background:linear-gradient(155deg,#4a1a08,#8a4020 60%,#c07040)}
.gal-cta{text-align:center}
 
/* ── AVIS ── */
#avis{background:var(--navy);position:relative;overflow:hidden}
#avis::before{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(201,144,58,.05)'/%3E%3C/svg%3E")}
.avis-inner{max-width:1240px;margin:0 auto;position:relative}
.avis-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:3rem}
.avis-card{background:rgba(255,255,255,.05);border-radius:var(--r-card);border:1px solid rgba(201,144,58,.15);padding:1.8rem;position:relative;transition:border-color .3s,background .3s}
.avis-card:hover{border-color:rgba(201,144,58,.3);background:rgba(255,255,255,.07)}
.avis-card::before{content:'"';position:absolute;top:.8rem;right:1.4rem;font-family:var(--serif);font-size:5rem;color:rgba(201,144,58,.1);line-height:1}
.avis-av{width:52px;height:52px;border-radius:50%;background:linear-gradient(135deg,var(--navy-mid),var(--gold-dk));border:2px solid rgba(201,144,58,.3);display:flex;align-items:center;justify-content:center;font-family:var(--serif);font-size:1.3rem;color:rgba(255,255,255,.6);margin-bottom:1rem}
.avis-stars{color:var(--gold);font-size:.78rem;letter-spacing:.08em;margin-bottom:1rem}
.avis-card p{font-size:.87rem;color:rgba(255,255,255,.62);font-weight:300;line-height:1.8;margin-bottom:1.4rem;font-style:italic}
.avis-auth{font-size:.8rem;font-weight:600;color:var(--white)}
.avis-circ{font-size:.65rem;color:var(--gold);text-transform:uppercase;letter-spacing:.1em;margin-top:2px}
 
/* ── WHY ── */
#why{background:var(--silk)}
.why-inner{max-width:1240px;margin:0 auto}
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.8rem;margin-top:3rem}
.why-card{background:var(--white);padding:2rem 1.5rem;border-radius:var(--r-card);text-align:center;border:1px solid rgba(201,144,58,.12);box-shadow:0 4px 16px rgba(0,0,0,.05);transition:transform .3s,box-shadow .3s,border-color .3s}
.why-card:hover{transform:translateY(-5px);box-shadow:var(--shadow);border-color:rgba(201,144,58,.3)}
.why-icon{width:60px;height:60px;margin:0 auto 1.3rem;background:rgba(201,144,58,.1);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--gold)}
.why-icon svg{width:24px;height:24px}
.why-card h4{font-family:var(--serif);font-size:1.1rem;font-weight:600;color:var(--navy);margin-bottom:.6rem}
.why-card p{font-size:.8rem;color:var(--muted);font-weight:300;line-height:1.8}
 
/* ── CONTACT ── */
#contact{background:var(--white)}
.contact-grid{max-width:1240px;margin:0 auto;display:grid;grid-template-columns:1fr 1.2fr;gap:clamp(3rem,6vw,5rem);align-items:start}
.contact-info p.eyebrow{margin-bottom:1rem}
.contact-info h2{margin-bottom:1rem}
.contact-info>p:not(.eyebrow){font-size:.93rem;font-weight:300;color:var(--muted);line-height:1.85;margin-bottom:2rem}
.clist{display:flex;flex-direction:column;gap:1rem;margin-bottom:2.5rem}
.clist-item{display:flex;align-items:center;gap:12px;font-size:.87rem;color:var(--text)}
.clist-ic{width:38px;height:38px;background:rgba(201,144,58,.1);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--gold);flex-shrink:0}
.clist-ic svg{width:16px;height:16px}
.clist-item a{color:var(--text);transition:color .2s}
.clist-item a:hover{color:var(--gold)}
.map-wrap{border-radius:var(--r-card);overflow:hidden;box-shadow:var(--shadow);aspect-ratio:16/10;background:linear-gradient(135deg,#c8dce8,#a8c4d4 40%,#8ab0c8);position:relative}
.map-wrap::after{content:'📍 Port de l\'Ayguade, Hyères';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);background:var(--white);padding:.7rem 1.2rem;border-radius:50px;font-family:var(--sans);font-size:.78rem;font-weight:600;color:var(--navy);box-shadow:var(--shadow);white-space:nowrap}
 
/* ── RESERVE CTA ── */
#reserve{background:var(--navy);text-align:center;position:relative;overflow:hidden}
#reserve::before{content:'';position:absolute;top:-200px;left:50%;transform:translateX(-50%);width:600px;height:600px;border-radius:50%;background:radial-gradient(circle,rgba(201,144,58,.08) 0%,transparent 70%)}
.reserve-inner{max-width:680px;margin:0 auto;position:relative}
.reserve-inner h2{color:var(--white);font-size:clamp(2.2rem,5vw,3.5rem);margin-bottom:1.3rem}
.reserve-inner>p{color:rgba(255,255,255,.55);font-weight:300;line-height:1.85;margin-bottom:2.8rem;font-size:.95rem}
.res-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-bottom:3rem}
.cbar{display:flex;gap:1.8rem;justify-content:center;flex-wrap:wrap;padding-top:2rem;border-top:1px solid rgba(255,255,255,.08)}
.cbar-i{display:flex;align-items:center;gap:7px;color:rgba(255,255,255,.45);font-size:.82rem;transition:color .2s}
.cbar-i:hover{color:var(--gold)}
.cbar-i svg{width:14px;height:14px;color:var(--gold);flex-shrink:0}

 
/* ── ANIMATIONS ── */
.reveal{opacity:0;transform:translateY(26px);transition:opacity .7s cubic-bezier(.23,1,.32,1),transform .7s cubic-bezier(.23,1,.32,1)}
.reveal.vis{opacity:1;transform:none}
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}.d4{transition-delay:.4s}
 
/* ── RESPONSIVE ── */
@media(max-width:1100px){
  .exc-grid{grid-template-columns:repeat(2,1fr)}
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .ft{grid-template-columns:1fr 1fr}
  .gal-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:900px){
  .exp-grid{grid-template-columns:1fr}
  .bateau-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .sunset-grid{grid-template-columns:1fr;text-align:center}
  .avis-grid{grid-template-columns:1fr}
  .specs-bar{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:640px){
  .exc-grid{grid-template-columns:1fr}
  .why-grid{grid-template-columns:1fr}
  .gal-grid{grid-template-columns:repeat(2,1fr)}
  .hero-stats{display:none}
  .hero-btns{flex-direction:column;align-items:flex-start}
  #hero h1{font-size:2.6rem}
  .ft{grid-template-columns:1fr;gap:1.8rem}
  .specs-row{grid-template-columns:repeat(2,1fr)}
  .res-btns{flex-direction:column;align-items:center}
}








/* ── EXCURSIONS responsive fix ── */
@media (max-width: 1100px) {
  .exc-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .exc-card:nth-child(1),
  .exc-card:nth-child(2),
  .exc-card:nth-child(3),
  .exc-card:nth-child(4),
  .exc-card:nth-child(5) {
    grid-column: span 1 !important;
  }
}

@media (max-width: 640px) {
  .exc-grid {
    grid-template-columns: 1fr !important;
  }
  .exc-card:nth-child(1),
  .exc-card:nth-child(2),
  .exc-card:nth-child(3),
  .exc-card:nth-child(4),
  .exc-card:nth-child(5) {
    grid-column: span 1 !important;
  }
}
