
  /* ===== RESET & BASE ===== */
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --navy:       #04101e;
    --deep:       #071828;
    --ocean:      #0a2540;
    --mid:        #0e3460;
    --cyan:       #00c6d4;
    --teal:       #00a8b5;
    --gold:       #f0a500;
    --amber:      #e8820c;
    --white:      #f4f8fc;
    --fog:        #b8cfe0;
    --fs-hero:    clamp(2.8rem, 7vw, 7rem);
    --fs-xl:      clamp(2rem, 5vw, 4rem);
    --fs-lg:      clamp(1.4rem, 3vw, 2.2rem);
    --fs-md:      clamp(1rem, 2vw, 1.2rem);
    --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom cursor */
  .cursor {
    position: fixed; top: 0; left: 0; z-index: 9999;
    pointer-events: none;
  }
  .cursor-dot {
    width: 8px; height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid rgba(0,198,212,0.5);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: all 0.18s var(--transition);
  }

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

  /* ===== NOISE TEXTURE OVERLAY ===== */
  body::before {
    content: '';
    position: fixed; inset: 0; z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.6;
  }

  /* ===== NAVIGATION ===== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.2rem 4rem;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.4s var(--transition);
    background: linear-gradient(to bottom,
      rgba(4,16,30,0.75) 0%,
      rgba(4,16,30,0.4) 70%,
      rgba(4,16,30,0) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  nav.scrolled {
    background: rgba(4,16,30,0.92);
    padding: 0.9rem 4rem;
    border-bottom: 1px solid rgba(200,169,110,0.15);
  }
  nav.scrolled {
    background: rgba(4, 16, 30, 0.92);
    backdrop-filter: blur(20px);
    padding: 0.8rem 4rem;
    border-bottom: 1px solid rgba(0,198,212,0.15);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 0.8rem;
    text-decoration: none;
  }
  .nav-logo-icon {
    width: 44px; height: 44px;
    border: 1.5px solid var(--cyan);
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 1.3rem;
  }
  .nav-logo-text { 
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    color: var(--white);
    line-height: 1.1;
  }
  .nav-logo-sub {
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    color: var(--cyan);
    text-transform: uppercase;
  }
  .nav-links {
    display: flex; gap: 2.5rem; align-items: center;
    list-style: none;
  }
  .nav-links a {
    color: var(--fog);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--cyan);
    transition: width 0.3s var(--transition);
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { width: 100%; }
  .nav-lang {
    display: flex; gap: 0.6rem;
    font-size: 0.72rem; letter-spacing: 0.1em;
  }
  .nav-lang a {
    color: var(--fog); text-decoration: none;
    padding: 0.2rem 0.5rem;
    border: 1px solid rgba(184,207,224,0.2);
    border-radius: 3px;
    transition: all 0.2s;
  }
  .nav-lang a.active, .nav-lang a:hover {
    background: var(--cyan); color: var(--navy);
    border-color: var(--cyan);
  }
  .nav-cta {
    background: var(--cyan);
    color: var(--navy) !important;
    padding: 0.55rem 1.4rem !important;
    border-radius: 4px;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    transition: background 0.3s, transform 0.2s !important;
  }
  .nav-cta:hover { background: #00e8f8 !important; transform: translateY(-1px); }
  .nav-cta::after { display: none !important; }

  .hamburger {
    display: none;
    flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 4px;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--white); transition: all 0.3s;
  }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    height: 100vh; min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: 
      linear-gradient(to bottom, rgba(4,16,30,0.45) 0%, rgba(4,16,30,0.2) 40%, rgba(4,16,30,0.85) 85%, var(--navy) 100%),
      url('https://khub.bzh/qbe/images/AdobeStock_saint-malo-drone.webp') center/cover no-repeat;
  }
  /* Animated ocean waves */
  .hero-waves {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 200px; overflow: hidden;
  }
  .wave {
    position: absolute; bottom: 0;
    width: 200%; height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%2304101e' fill-opacity='1' d='M0,50 C180,100 360,0 540,50 C720,100 900,0 1080,50 C1260,100 1440,0 1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E") repeat-x;
    background-size: 50% 100%;
  }
  .wave1 { animation: wave1 8s linear infinite; opacity: 0.6; }
  .wave2 { animation: wave1 12s linear infinite reverse; opacity: 0.4; bottom: 10px; }
  .wave3 { animation: wave1 16s linear infinite; opacity: 0.3; bottom: 20px; }
  @keyframes wave1 {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* Floating particles */
  .particles { position: absolute; inset: 0; overflow: hidden; }
  .particle {
    position: absolute;
    width: 2px; height: 2px;
    background: var(--cyan);
    border-radius: 50%;
    animation: float var(--dur) ease-in-out infinite var(--delay);
    opacity: 0;
  }
  @keyframes float {
    0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
    10%  { opacity: 0.8; }
    90%  { opacity: 0.4; }
    100% { transform: translateY(-20vh) translateX(var(--drift)); opacity: 0; }
  }

  /* Hero compass rose */
  .hero-compass {
    position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
    width: clamp(200px, 28vw, 420px);
    opacity: 0.08;
    animation: slowSpin 60s linear infinite;
  }
  @keyframes slowSpin { to { transform: translateY(-50%) rotate(360deg); } }

  .hero-content {
    position: relative; z-index: 2;
    padding: 120px 6rem 6rem;
    max-width: 900px;
    align-self: flex-end;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: rgba(0,198,212,0.1);
    border: 1px solid rgba(0,198,212,0.3);
    padding: 0.35rem 1rem;
    border-radius: 30px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s var(--transition) both;
  }
  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.5); }
  }
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: var(--fs-hero);
    line-height: 0.9;
    letter-spacing: 0.02em;
    animation: fadeInUp 0.8s 0.15s var(--transition) both;
  }
  .hero-title .accent { color: var(--cyan); }
  .hero-title .gold   { color: var(--gold); }
  .hero-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: var(--fs-lg);
    color: var(--fog);
    margin: 1.2rem 0 2.5rem;
    max-width: 620px;
    line-height: 1.5;
    animation: fadeInUp 0.8s 0.3s var(--transition) both;
  }
  .hero-meta {
    display: flex; gap: 3rem; align-items: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s 0.45s var(--transition) both;
  }
  .hero-stat strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--cyan);
    letter-spacing: 0.04em;
  }
  .hero-stat span {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fog);
  }
  .hero-divider { width: 1px; height: 50px; background: rgba(184,207,224,0.2); }
  .hero-actions {
    display: flex; gap: 1.2rem; align-items: center;
    animation: fadeInUp 0.8s 0.6s var(--transition) both;
  }
  .btn-primary {
    background: var(--cyan);
    color: var(--navy);
    padding: 0.85rem 2.2rem;
    border: none; border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    position: relative; overflow: hidden;
  }
  .btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.5s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,198,212,0.35); }
  .btn-primary:hover::before { transform: translateX(100%); }
  .btn-outline {
    border: 1.5px solid rgba(244,248,252,0.3);
    color: var(--white);
    padding: 0.85rem 2.2rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
  }
  .btn-outline:hover { border-color: var(--white); background: rgba(244,248,252,0.06); }
  .scroll-indicator {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    z-index: 2;
    animation: fadeIn 1.5s 1.2s both;
  }
  .scroll-indicator span {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fog);
  }
  .scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--fog), transparent);
    animation: scrollAnim 2s ease-in-out infinite;
  }
  @keyframes scrollAnim {
    0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    50%       { transform: scaleY(0.4); opacity: 0.4; }
  }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }

  /* ===== STRIP ===== */
  .strip {
    background: var(--cyan);
    padding: 0.9rem 0;
    overflow: hidden;
    position: relative; z-index: 2;
  }
  .strip-inner {
    display: flex; gap: 0;
    white-space: nowrap;
    animation: ticker 25s linear infinite;
  }
  .strip-item {
    display: inline-flex; align-items: center; gap: 1rem;
    padding: 0 2.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    color: var(--navy);
  }
  .strip-dot {
    width: 5px; height: 5px;
    background: var(--navy);
    border-radius: 50%;
    opacity: 0.4;
  }
  @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  /* ===== SECTIONS SHARED ===== */
  section { position: relative; z-index: 2; }
  .section-label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--cyan);
    display: flex; align-items: center; gap: 0.8rem;
    margin-bottom: 1rem;
  }
  .section-label::before {
    content: '';
    width: 30px; height: 1px;
    background: var(--cyan);
  }
  h2.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: var(--fs-xl);
    line-height: 0.95;
    letter-spacing: 0.03em;
  }

  /* ===== ABOUT / CONCEPT ===== */
  .about {
    padding: 9rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    background: linear-gradient(180deg, var(--navy) 0%, var(--deep) 100%);
  }
  .about-visual {
    position: relative;
  }
  .about-img-main {
    width: 100%; aspect-ratio: 3/4;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
  }
  .about-img-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.1);
    transition: transform 0.8s var(--transition);
  }
  .about-img-main:hover img { transform: scale(1.04); }
  .about-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(4,16,30,0.7) 0%, transparent 50%);
  }
  .about-img-badge {
    position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
    background: rgba(4,16,30,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,198,212,0.2);
    border-radius: 6px;
    padding: 1rem 1.2rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .about-img-badge-icon {
    font-size: 1.6rem;
    width: 44px; height: 44px;
    background: rgba(0,198,212,0.1);
    border-radius: 50%;
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .about-img-badge p { font-size: 0.78rem; color: var(--fog); line-height: 1.5; }
  .about-img-badge p strong { color: var(--white); display: block; margin-bottom: 2px; }
  .about-float {
    position: absolute; top: -2rem; right: -2rem;
    background: var(--gold);
    color: var(--navy);
    width: 100px; height: 100px;
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.04em;
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 12px 30px rgba(240,165,0,0.3);
    animation: floatBob 4s ease-in-out infinite;
  }
  @keyframes floatBob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
  }
  .about-text .section-label { margin-bottom: 0.8rem; }
  .about-text h2 { margin-bottom: 1.5rem; }
  .about-text p {
    color: var(--fog);
    font-size: var(--fs-md);
    line-height: 1.8;
    margin-bottom: 1.2rem;
  }
  .about-text p strong { color: var(--white); }
  .about-pills {
    display: flex; flex-wrap: wrap; gap: 0.6rem;
    margin: 2rem 0;
  }
  .pill {
    background: rgba(0,198,212,0.08);
    border: 1px solid rgba(0,198,212,0.2);
    color: var(--cyan);
    padding: 0.35rem 0.9rem;
    border-radius: 30px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* ===== EXPEDITIONS / CRUISES ===== */
  .expeditions {
    padding: 8rem 6rem;
    background: var(--deep);
  }
  .expeditions-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 4rem;
  }
  .exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(0,198,212,0.08);
    border-radius: 8px;
    overflow: hidden;
  }
  .exp-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--ocean);
    cursor: pointer;
  }
  .exp-card-bg {
    position: absolute; inset: 0;
    transition: transform 0.7s var(--transition);
  }
  .exp-card:hover .exp-card-bg { transform: scale(1.08); }
  .exp-card-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(0.7) brightness(0.7);
  }
  .exp-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(4,16,30,0.9) 0%, rgba(4,16,30,0.1) 60%);
    transition: background 0.4s;
  }
  .exp-card:hover .exp-card-overlay {
    background: linear-gradient(to top, rgba(4,16,30,0.95) 0%, rgba(4,16,30,0.35) 60%);
  }
  .exp-card-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.8rem;
  }
  .exp-card-week {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.4rem;
  }
  .exp-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    line-height: 0.95;
    margin-bottom: 0.8rem;
  }
  .exp-card-desc {
    font-size: 0.8rem;
    color: var(--fog);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--transition), opacity 0.4s;
    opacity: 0;
  }
  .exp-card:hover .exp-card-desc { max-height: 100px; opacity: 1; }
  .exp-card-arrow {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-top: 1rem;
    text-decoration: none;
    transition: gap 0.3s;
  }
  .exp-card:hover .exp-card-arrow { gap: 0.7rem; }

  /* ===== DESTINATIONS MARQUEE ===== */
  .destinations-strip {
    padding: 5rem 0;
    background: var(--navy);
    overflow: hidden;
  }
  .dest-marquee {
    display: flex; gap: 3rem;
    animation: destScroll 20s linear infinite;
    width: max-content;
  }
  .dest-item {
    display: flex; align-items: center; gap: 0.8rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
    color: rgba(244,248,252,0.15);
    transition: color 0.3s;
  }
  .dest-item:hover { color: rgba(244,248,252,0.6); }
  .dest-icon { font-size: 1.2rem; opacity: 0.6; }
  @keyframes destScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  /* ===== STATS ===== */
  .stats {
    padding: 6rem 6rem;
    background: var(--ocean);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .stat-item {
    padding: 3rem 2.5rem;
    border-right: 1px solid rgba(255,255,255,0.06);
    text-align: center;
  }
  .stat-item:last-child { border-right: none; }
  .stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--cyan);
    display: block;
  }
  .stat-unit {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--gold);
  }
  .stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--fog);
    margin-top: 0.5rem;
    display: block;
  }

  /* ===== EXPERIENCE / WHY ===== */
  .experience {
    padding: 9rem 6rem;
    background: var(--deep);
  }
  .exp-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 4rem;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    overflow: hidden;
  }
  .feature {
    padding: 3rem 2.5rem;
    background: var(--deep);
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }
  .feature::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--cyan);
    transition: height 0.4s var(--transition);
  }
  .feature:hover { background: rgba(0,198,212,0.04); }
  .feature:hover::before { height: 100%; }
  .feature-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
  }
  .feature h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.8rem;
    color: var(--white);
  }
  .feature p {
    font-size: 0.85rem;
    color: var(--fog);
    line-height: 1.75;
  }

  /* ===== TESTIMONIALS ===== */
  .testimonials {
    padding: 9rem 6rem;
    background: var(--navy);
    overflow: hidden;
  }
  .testimonials-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: start;
    margin-bottom: 5rem;
  }
  .testimonials-header p {
    color: var(--fog); font-size: var(--fs-md); line-height: 1.8;
    margin-top: 2rem;
  }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .testi-card {
    background: rgba(14,52,96,0.4);
    border: 1px solid rgba(0,198,212,0.1);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s;
  }
  .testi-card:hover {
    border-color: rgba(0,198,212,0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  }
  .testi-stars {
    color: var(--gold); font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
  }
  .testi-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 1.5rem;
  }
  .testi-author {
    display: flex; align-items: center; gap: 0.8rem;
  }
  .testi-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    display: grid; place-items: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    color: var(--navy);
    flex-shrink: 0;
  }
  .testi-name { font-size: 0.8rem; font-weight: 600; color: var(--white); }
  .testi-role { font-size: 0.7rem; color: var(--fog); }

  /* ===== GALLERY ===== */
  .gallery {
    padding: 0;
    background: var(--navy);
    overflow: hidden;
  }
  .gallery-header {
    padding: 6rem 6rem 3rem;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
    gap: 3px;
  }
  .gallery-item {
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 2; }
  .gallery-item:nth-child(7) { grid-column: span 2; grid-row: span 2; }
  .gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    min-height: 200px;
    filter: saturate(0.75) brightness(0.9);
    transition: all 0.6s var(--transition);
  }
  .gallery-item:hover img {
    filter: saturate(1) brightness(1.05);
    transform: scale(1.06);
  }
  .gallery-item-overlay {
    position: absolute; inset: 0;
    background: rgba(0,198,212,0.15);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .gallery-item:hover .gallery-item-overlay { opacity: 1; }

  /* ===== CTA ===== */
  .cta-section {
    padding: 10rem 6rem;
    background: 
      linear-gradient(135deg, rgba(0,168,181,0.12) 0%, transparent 50%, rgba(240,165,0,0.06) 100%),
      var(--deep);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0,198,212,0.06), transparent);
  }
  .cta-section .section-label { justify-content: center; }
  .cta-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.9;
    margin: 1rem 0 1.5rem;
  }
  .cta-section p {
    max-width: 560px;
    margin: 0 auto 3rem;
    color: var(--fog);
    font-size: var(--fs-md);
    line-height: 1.8;
  }
  .cta-actions {
    display: flex; gap: 1.2rem; justify-content: center; align-items: center;
  }
  .cta-note {
    margin-top: 1.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: rgba(184,207,224,0.5);
    text-transform: uppercase;
  }
  .cta-dates {
    display: flex; gap: 1.5rem; justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
  }
  .cta-date-pill {
    background: rgba(0,198,212,0.08);
    border: 1px solid rgba(0,198,212,0.2);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: var(--cyan);
    transition: all 0.3s;
  }
  .cta-date-pill:hover {
    background: rgba(0,198,212,0.16);
    border-color: var(--cyan);
  }

  /* ===== DIRECTOR ===== */
  .director {
    padding: 8rem 6rem;
    background: var(--navy);
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 6rem;
    align-items: center;
  }
  .director-photo {
    position: relative;
  }
  .director-photo-inner {
    width: 100%; aspect-ratio: 3/4;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
  }
  .director-photo-inner::after {
    content: '';
    position: absolute; inset: 0;
    border: 2px solid var(--cyan);
    border-radius: 6px;
    transform: translate(12px, 12px);
    z-index: -1;
  }
  .director-photo-inner img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.05);
  }
  .director-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
  }
  .director-quote::before {
    content: '"';
    position: absolute; left: 0; top: -0.5rem;
    font-size: 4rem;
    color: var(--cyan);
    opacity: 0.5;
    font-family: Georgia, serif;
    line-height: 1;
  }
  .director-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
  }
  .director-role {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1.5rem;
  }
  .director-bio {
    color: var(--fog);
    font-size: var(--fs-md);
    line-height: 1.8;
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 5rem 6rem 3rem;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
  }
  .footer-brand p {
    color: var(--fog);
    font-size: 0.85rem;
    line-height: 1.8;
    margin: 1.2rem 0;
    max-width: 280px;
  }
  .footer-social {
    display: flex; gap: 0.8rem; margin-top: 1.5rem;
  }
  .social-btn {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 0.75rem;
    color: var(--fog);
    text-decoration: none;
    transition: all 0.3s;
  }
  .social-btn:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0,198,212,0.08);
  }
  .footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.14em;
    color: var(--white);
    margin-bottom: 1.2rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col li {
    margin-bottom: 0.6rem;
  }
  .footer-col a {
    color: var(--fog);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--cyan); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-bottom p {
    color: rgba(184,207,224,0.4);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }
  .footer-langs {
    display: flex; gap: 0.5rem;
  }
  .footer-langs a {
    color: rgba(184,207,224,0.4);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.5rem;
    border: 1px solid rgba(184,207,224,0.1);
    border-radius: 3px;
    transition: all 0.2s;
  }
  .footer-langs a:hover {
    color: var(--cyan);
    border-color: rgba(0,198,212,0.3);
  }

  /* ===== MOBILE NAV MENU ===== */
  .mobile-menu {
    display: none;
    position: fixed; inset: 0;
    background: rgba(4,16,30,0.97);
    backdrop-filter: blur(20px);
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.08em;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--cyan); }
  .mobile-close {
    position: absolute; top: 1.5rem; right: 2rem;
    font-size: 1.5rem; cursor: pointer;
    background: none; border: none;
    color: var(--fog);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1200px) {
    nav { padding: 1.2rem 3rem; }
    nav.scrolled { padding: 0.8rem 3rem; }
    .about, .expeditions, .testimonials, .gallery-header, .cta-section, .director, footer { padding-left: 3rem; padding-right: 3rem; }
    .experience { padding-left: 3rem; padding-right: 3rem; }
    .stats { padding-left: 3rem; padding-right: 3rem; }
    .hero-content { padding: 110px 3rem 6rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  }

  @media (max-width: 900px) {
    .nav-links, .nav-lang { display: none !important; }
    .hamburger { display: flex !important; }
    .about { grid-template-columns: 1fr; gap: 3rem; padding: 6rem 2rem; }
    .about-visual { order: -1; }
    .about-float { top: 1rem; right: 1rem; width: 80px; height: 80px; font-size: 0.75rem; }
    .expeditions { padding: 6rem 2rem; }
    .exp-grid { grid-template-columns: 1fr; }
    .exp-card { aspect-ratio: 4/3; }
    .stats { grid-template-columns: repeat(2, 1fr); padding: 4rem 2rem; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .experience { padding: 6rem 2rem; }
    .exp-features { grid-template-columns: 1fr; }
    .testimonials { padding: 6rem 2rem; }
    .testimonials-header { grid-template-columns: 1fr; gap: 2rem; }
    .testi-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
    .gallery-item:nth-child(7) { grid-column: span 1; grid-row: span 1; }
    .gallery-header { padding: 4rem 2rem 2rem; }
    .director { grid-template-columns: 1fr; padding: 6rem 2rem; }
    .director-photo { max-width: 280px; }
    .cta-section { padding: 7rem 2rem; }
    footer { padding: 4rem 2rem 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .expeditions-header { flex-direction: column; gap: 1.5rem; }
    .hero-content { padding: 100px 1.5rem 4rem; }
    .hero-meta { gap: 1.5rem; flex-wrap: wrap; }
    .hero-actions { flex-wrap: wrap; }
  }

  @media (max-width: 600px) {
    .hero-compass { opacity: 0.04; right: -5%; }
    .stats { grid-template-columns: 1fr 1fr; }
    .cta-actions { flex-direction: column; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(4) { grid-column: span 1; }
    nav { padding: 1rem 1.5rem; }

    /* === HERO MOBILE === */
    .hero { height: 100svh; min-height: 0; justify-content: flex-end; }
    .hero-content {
      padding: 80px 1.2rem 2.5rem;
      max-width: 100%;
    }
    .hero-badge {
      font-size: 0.7rem;
      padding: 0.4rem 1rem;
      letter-spacing: 0.1em;
      margin-bottom: 1rem;
      opacity: 1 !important;
      visibility: visible !important;
      position: relative;
      z-index: 10;
    }
    .hero-title {
      font-size: clamp(3.5rem, 16vw, 5.5rem);
      line-height: 0.88;
      margin-bottom: 1rem;
    }
    .hero-tagline {
      font-size: 0.9rem;
      line-height: 1.5;
      margin-bottom: 1.5rem;
    }
    .hero-meta {
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .hero-stat strong { font-size: 1.4rem; }
    .hero-stat span { font-size: 0.65rem; }
    .hero-divider { display: none; }
    .hero-actions {
      flex-direction: column;
      gap: 0.8rem;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
      width: 100%;
      text-align: center;
      padding: 0.9rem 1.5rem;
      font-size: 0.85rem;
    }
    .scroll-indicator { display: none; }
    .hero-waves { opacity: 0.3; }
  }

  /* ===== ANIMATIONS ON SCROLL ===== */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
  }
  .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.35s; }


/* === CHARTER - Location voilier - v4.0 === */
.charter-hero { background: linear-gradient(135deg, #0a1628 0%, #0d2240 60%, #1a3a5c 100%); }
.charter-hero .page-hero-inner { padding: 8rem 2rem 6rem; text-align: center; max-width: 800px; margin: 0 auto; }
.charter-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); color: #fff; line-height: 1.15; margin-bottom: 1.2rem; }
.charter-hero .hero-sub { color: rgba(255,255,255,.75); font-size: 1.1rem; line-height: 1.7; margin-bottom: 2rem; }

.charter-strip { background: #0d1f35; border-top: 1px solid rgba(200,169,110,.2); border-bottom: 1px solid rgba(200,169,110,.2); padding: 1.2rem 2rem; }
.charter-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.charter-strip-item { color: rgba(255,255,255,.8); font-size: .95rem; display: flex; align-items: center; gap: .5rem; }
.charter-strip-item span { color: var(--pink); font-size: 1.2rem; }

.charter-offres { padding: 6rem 0; background: #0b1a2e; }
.charter-offres .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-label { color: var(--pink); font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: .8rem; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; margin-bottom: 1rem; }
.section-sub { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.7; max-width: 600px; margin-bottom: 3.5rem; }

.charter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

.charter-card { background: #0f2035; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.charter-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }

.charter-card-img { height: 200px; background-size: cover; background-position: center; }
.charter-card-img--fallback { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #0a1628, #1a3a5c); font-size: 3rem; }

.charter-card-body { padding: 1.8rem; }
.charter-type-badge { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .8rem; }
.charter-card-body h3 { color: #fff; font-size: 1.25rem; margin-bottom: .8rem; line-height: 1.3; }
.charter-intro { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.6; margin-bottom: 1.2rem; }
.charter-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.charter-duration, .charter-capacity { font-size: .82rem; color: rgba(255,255,255,.5); }
.charter-price { color: var(--pink); font-size: 1rem; font-weight: 600; margin-bottom: 1.4rem; }

.charter-cta { background: linear-gradient(135deg, #0d1f35, #1a2f4a); padding: 6rem 2rem; text-align: center; }
.charter-cta .cta-inner { max-width: 600px; margin: 0 auto; }
.charter-cta h2 { color: #fff; font-size: 2rem; margin-bottom: 1rem; }
.charter-cta p { color: rgba(255,255,255,.7); margin-bottom: 2rem; line-height: 1.7; }

@media (max-width: 768px) {
    .charter-grid { grid-template-columns: 1fr; }
    .charter-strip-inner { gap: 1rem; }
}

/* ========================================
   FORMULAIRE CONTACT — dark premium
   ======================================== */
.contact-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.contact-form {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(200,169,110,0.15);
  border-radius: 12px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}
.contact-form .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.contact-form .form-group {
  margin-bottom: 1.25rem;
}
.contact-form label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pink, #c8a96e);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.contact-form .form-control {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  box-sizing: border-box;
}
.contact-form .form-control:focus {
  outline: none;
  border-color: var(--pink, #c8a96e);
  background: rgba(0,0,0,0.5);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.15);
}
.contact-form .form-control::placeholder {
  color: rgba(255,255,255,0.3);
}
.contact-form textarea.form-control {
  resize: vertical;
  min-height: 180px;
  font-family: inherit;
}
.contact-form .rgpd-group {
  margin: 1.5rem 0 0;
  padding: 1rem;
  background: rgba(0,0,0,0.2);
  border-radius: 6px;
  border: 1px solid rgba(200,169,110,0.1);
}
.contact-form .rgpd-group label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  text-transform: none;
  letter-spacing: normal;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  font-weight: normal;
}
.contact-form .rgpd-group input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: var(--pink, #c8a96e);
  cursor: pointer;
  flex-shrink: 0;
}
.contact-form .rgpd-group a {
  color: var(--pink, #c8a96e);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-form .submit-zone {
  margin-top: 2rem;
  text-align: center;
}
.contact-form .btn-pink {
  padding: 1rem 3rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

/* Messages */
.alert-error {
  background: rgba(231,76,60,0.1);
  border: 1px solid rgba(231,76,60,0.4);
  color: #ff9e93;
  padding: 0.85rem 1.25rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.contact-success {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 12px;
}
.contact-success h2 {
  color: var(--pink, #c8a96e);
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.contact-success p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 640px) {
  .contact-form {
    padding: 1.5rem;
  }
  .contact-form .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-section {
    padding: 2rem 1rem 4rem;
  }
}

/* ========================================
   HERO SLIDER - CMS Maison, branding QBE
   ======================================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--navy);
}
.hero-slider__track { position: absolute; inset: 0; }
.hero-slider__slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: flex-end;
  padding: 0 8% 0 5%;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .9s ease, visibility .9s ease;
  z-index: 1;
}
.hero-slider__slide.is-active {
  opacity: 1; visibility: visible; pointer-events: auto; z-index: 2;
}
.hero-slider__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-slider__slide.is-active .hero-slider__bg { transform: scale(1); }
.hero-slider__content {
  position: relative;
  z-index: 3;
  max-width: 640px;
  text-align: left;
  color: var(--white);
}
.hero-slider__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-hero);
  line-height: 0.9;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  opacity: 0; transform: translateY(30px);
  transition: opacity 1s ease .3s, transform 1s ease .3s;
}
.hero-slider__slide.is-active .hero-slider__title {
  opacity: 1; transform: translateY(0);
}
.hero-slider__title .accent { color: var(--cyan); }
.hero-slider__title .gold   { color: var(--gold); }

.hero-slider__subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: var(--fs-lg);
  line-height: 1.4;
  color: var(--fog);
  margin: 0 0 2.2rem;
  max-width: 620px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s ease .5s, transform .8s ease .5s;
}
.hero-slider__slide.is-active .hero-slider__subtitle {
  opacity: 1; transform: translateY(0);
}
.hero-slider__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s ease .8s, transform .8s ease .8s;
}
.hero-slider__slide.is-active .hero-slider__actions {
  opacity: 1; transform: translateY(0);
}

/* Indicators */
.hero-slider__indicators {
  position: absolute;
  bottom: 3vh; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex; gap: .6rem;
}
.hero-slider__dot {
  width: 40px; height: 3px;
  background: rgba(255,255,255,.25);
  border: 0; padding: 0;
  cursor: pointer;
  transition: background .3s ease, width .3s ease;
}
.hero-slider__dot.is-active {
  background: var(--cyan); width: 60px;
}

/* Arrows */
.hero-slider__arrow {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 1.8rem; line-height: 1;
  cursor: pointer;
  transition: background .3s ease, border-color .3s ease, color .3s ease;
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
}
.hero-slider__arrow:hover {
  background: var(--cyan);
  color: var(--navy);
  border-color: var(--cyan);
}
.hero-slider__arrow--prev { left: 2vw; }
.hero-slider__arrow--next { right: 2vw; }

/* Scroll indicator */
.hero-slider .scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  animation: fadeIn 1.5s 1.2s both;
}
.hero-slider .scroll-indicator span {
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fog);
}
.hero-slider .scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--fog), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-slider__content { max-width: 520px; }
  .hero-slider__slide { padding: 0 6%; }
}
@media (max-width: 768px) {
  .hero-slider { height: 90vh; min-height: 560px; }
  .hero-slider__slide {
    padding: 0 1.5rem;
    align-items: flex-end;
    padding-bottom: 14vh;
    justify-content: flex-start;
  }
  .hero-slider__content { max-width: 100%; }
  .hero-slider__arrow { display: none; }
  .hero-slider__indicators { bottom: 6vh; }
  .hero-slider .scroll-indicator { display: none; }
}

/* ========================================
   CONTENT BLOCK - Articles / Galleries / News
   Reutilisable pour tout CMS Maison
   ======================================== */
.content-block {
  padding: 6rem 5%;
  background: var(--deep);
  position: relative;
}
.content-block__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.content-block__header {
  text-align: center;
  margin-bottom: 3rem;
}
.content-block__header .section-label {
  display: block;
  color: var(--cyan);
  font-size: .82rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.content-block__header .section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-xl);
  line-height: 1;
  letter-spacing: .02em;
  color: var(--white);
  text-transform: uppercase;
  margin: 0;
}
.content-block__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.content-card {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(0,198,212,.12);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.content-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,198,212,.4);
  box-shadow: 0 20px 60px rgba(0,198,212,.08);
}
.content-card__img-wrap {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.content-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s ease;
}
.content-card:hover .content-card__img {
  transform: scale(1.06);
}
.content-card__img--fallback {
  background: linear-gradient(135deg, var(--ocean), var(--deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(0,198,212,.4);
}
.content-card__body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.content-card__title {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  line-height: 1.1;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 .9rem;
}
.content-card__excerpt {
  color: var(--fog);
  font-size: .95rem;
  line-height: 1.6;
  margin: 0 0 1.4rem;
  flex-grow: 1;
}
.content-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--cyan);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap .3s ease, color .3s ease;
  align-self: flex-start;
}
.content-card__cta:hover {
  gap: .9rem;
  color: var(--gold);
}
.content-card__full {
  color: var(--fog);
  font-size: .95rem;
  line-height: 1.65;
}
.content-card__full h2, .content-card__full h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  margin: 1rem 0 .5rem;
  font-size: 1.15rem;
}
.content-card__full p { margin-bottom: .75rem; }

@media (max-width: 1024px) {
  .content-block__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 640px) {
  .content-block { padding: 4rem 1.5rem; }
  .content-block__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .content-card__body { padding: 1.3rem; }
}

/* ========================================
   ARTICLE PAGE - Detail article /article/{slug}
   ======================================== */
.article-page {
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
}
.article-page__hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 12rem 5% 4rem;
  overflow: hidden;
}
.article-page__hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.article-page__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--deep);
  z-index: 0;
}
.article-page__hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.article-page__cat {
  display: inline-block;
  color: var(--cyan);
  font-size: .82rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.article-page__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: .02em;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}
.article-page__excerpt {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: var(--fs-lg);
  line-height: 1.4;
  color: var(--fog);
  max-width: 760px;
  margin: 0;
}
.article-page__body {
  padding: 4rem 5% 6rem;
  background: var(--deep);
}
.article-page__content {
  max-width: 760px;
  margin: 0 auto;
  color: var(--fog);
  font-size: 1.08rem;
  line-height: 1.75;
}
.article-page__content h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.8rem;
  color: var(--white);
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}
.article-page__content h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: var(--white);
  margin: 2rem 0 .8rem;
}
.article-page__content p {
  margin-bottom: 1.4rem;
}
.article-page__content ul,
.article-page__content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding-left: 1rem;
}
.article-page__content li {
  margin-bottom: .5rem;
}
.article-page__content blockquote {
  border-left: 3px solid var(--cyan);
  padding: 1rem 0 1rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--white);
  background: rgba(0,198,212,.05);
}
.article-page__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.article-page__content a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--cyan);
  text-underline-offset: 3px;
  transition: color .3s ease;
}
.article-page__content a:hover {
  color: var(--cyan);
}
.article-page__back {
  max-width: 760px;
  margin: 3rem auto 0;
  text-align: center;
}
@media (max-width: 768px) {
  .article-page__hero { padding: 10rem 1.5rem 3rem; min-height: 50vh; }
  .article-page__body { padding: 3rem 1.5rem 4rem; }
  .article-page__content { font-size: 1rem; }
}


/* ========================================
   LIENS - Regle globale (CMS Maison)
   Tous les liens en blanc gras par defaut
   Les boutons (btn-*, btn-pink, etc.) gardent leur style
   Les liens dans les cards (CTA) aussi
   ======================================== */
a:not([class]),
a.text-link,
a.btn-pink,
.charter-card a, .charter-card-body a,
.destination-card a,
p a, li a, td a,
.page-content a, .page-hero a,
.article-page__content a,
footer a:not([class]),
.cookies-banner a {
  color: var(--white) !important;
  font-weight: 700 !important;
  text-decoration: underline;
  text-decoration-color: var(--cyan);
  text-underline-offset: 3px;
  transition: color .3s ease, text-decoration-color .3s ease;
}

a:not([class]):hover,
a.text-link:hover,
a.btn-pink:hover,
.charter-card a:hover, .charter-card-body a:hover,
.destination-card a:hover,
p a:hover, li a:hover, td a:hover,
.page-content a:hover, .page-hero a:hover,
.article-page__content a:hover,
footer a:not([class]):hover,
.cookies-banner a:hover {
  color: var(--cyan) !important;
  text-decoration-color: var(--white);
}

/* ========================================
   CHARTER DETAIL - Page /location/{slug}
   ======================================== */
.charter-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: 12rem 5% 4rem !important;
  background-size: cover !important;
  background-position: center !important;
}
.charter-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(4,16,30,.4) 0%, rgba(4,16,30,.9) 100%);
  z-index: 1;
}
.charter-hero .page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.charter-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
  line-height: 1 !important;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--white) !important;
  margin: 0 0 1.5rem !important;
}
.charter-hero .hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: var(--fs-lg) !important;
  line-height: 1.4 !important;
  color: var(--fog) !important;
  max-width: 760px;
}
.charter-hero .eyebrow {
  color: var(--cyan) !important;
  font-size: .82rem !important;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-weight: 700;
  display: inline-block;
}
.charter-hero .eyebrow a {
  color: inherit !important;
  text-decoration: none !important;
  font-weight: 700 !important;
}

/* Body */
.charter-detail-body {
  background: var(--deep);
  padding: 5rem 5%;
}
.charter-detail-body .container {
  max-width: 1200px;
  margin: 0 auto;
}
.charter-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
}
.charter-detail-content .section-label {
  color: var(--cyan);
  font-size: .82rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 700;
  display: block;
}
.charter-detail-content {
  color: var(--fog);
  font-size: 1.05rem;
  line-height: 1.75;
}
.charter-detail-content h2,
.charter-detail-content h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  margin: 2rem 0 1rem;
}
.charter-detail-content h2 { font-size: 1.8rem; }
.charter-detail-content h3 { font-size: 1.4rem; }
.charter-detail-content p { margin-bottom: 1.4rem; }
.charter-detail-content ul,
.charter-detail-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding-left: 1rem;
}
.charter-detail-content li { margin-bottom: .5rem; }

/* Aside */
.charter-detail-aside {
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
.charter-aside-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(0,198,212,.15);
  border-radius: 12px;
  padding: 2rem;
}
.charter-aside-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.2rem;
  margin: 0 0 1.3rem;
}
.charter-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.charter-info-list li {
  color: var(--fog);
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .95rem;
  line-height: 1.5;
}
.charter-info-list li:last-child { border-bottom: 0; }
.charter-info-list li span { margin-right: .5rem; }
.charter-info-list li strong { color: var(--white); font-weight: 600; }

.charter-dests-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.charter-dests-list li {
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.charter-dests-list li:last-child { border-bottom: 0; }
.charter-dests-list a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  transition: color .3s ease;
  display: block;
}
.charter-dests-list a:hover { color: var(--cyan); }

/* Section autres formules */
.charter-autres {
  background: var(--navy);
  padding: 5rem 5%;
}
.charter-autres .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.charter-autres .section-label {
  color: var(--cyan);
  font-size: .82rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.charter-autres .section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-xl);
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 3rem;
}
.charter-autres .charter-grid {
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .charter-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .charter-detail-aside { position: static; }
}
@media (max-width: 640px) {
  .charter-hero { padding: 9rem 1.5rem 3rem !important; min-height: 50vh; }
  .charter-detail-body { padding: 3rem 1.5rem; }
  .charter-autres { padding: 3.5rem 1.5rem; }
}

/* ========================================
   DESTINATIONS LIST - /destinations
   ======================================== */
.destinations-section {
  background: var(--deep);
  padding: 6rem 5%;
}
.destinations-section .container {
  max-width: 1400px;
  margin: 0 auto;
}
.destinations-section .section-label {
  display: block;
  text-align: center;
  color: var(--cyan);
  font-size: .82rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}
.destinations-section .section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-xl);
  line-height: 1;
  letter-spacing: .02em;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 3.5rem;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.dest-card {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(0,198,212,.12);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.dest-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,198,212,.4);
  box-shadow: 0 20px 60px rgba(0,198,212,.1);
}
.dest-card-link {
  display: block;
  text-decoration: none !important;
  color: inherit;
}
.dest-card-img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  transition: transform .8s ease;
}
.dest-card:hover .dest-card-img { transform: scale(1.06); }
.dest-card-img--fallback {
  background: linear-gradient(135deg, var(--ocean), var(--deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(0,198,212,.4);
}
.dest-card-body {
  padding: 1.8rem;
}
.dest-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}
.dest-card-body h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.4rem;
  margin: 0 0 .5rem;
  line-height: 1.25;
  font-weight: 700;
}
.dest-distance {
  display: block;
  color: var(--cyan);
  font-size: .82rem;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}
.dest-intro {
  color: var(--fog);
  font-size: .95rem;
  line-height: 1.6;
  margin: 0 0 1.3rem;
}
.dest-cta {
  display: inline-flex;
  align-items: center;
  color: var(--cyan);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: gap .3s ease, color .3s ease;
  gap: .4rem;
}
.dest-card:hover .dest-cta {
  gap: .9rem;
  color: var(--gold);
}

@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
}
@media (max-width: 640px) {
  .destinations-section { padding: 4rem 1.5rem; }
  .dest-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .dest-card-body { padding: 1.3rem; }
}

/* ========================================
   MAP BLOCK - Carte interactive (Leaflet)
   Reutilisable pour tout CMS Maison
   ======================================== */
.destinations-map-section {
  background: var(--navy);
  padding: 6rem 5%;
}
.destinations-map-section .container {
  max-width: 1400px;
  margin: 0 auto;
}
.destinations-map-section .section-label {
  display: block;
  text-align: center;
  color: var(--cyan);
  font-size: .82rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}
.destinations-map-section .section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-xl);
  line-height: 1;
  letter-spacing: .02em;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.destinations-map-section .map-intro {
  text-align: center;
  color: var(--fog);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.map-block {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,198,212,.2);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.map-block__canvas {
  width: 100%;
  background: var(--deep);
  z-index: 1;
}

/* Leaflet overrides pour coller au theme dark */
.leaflet-container {
  background: #0a2540 !important;
  font-family: inherit !important;
}
.leaflet-control-zoom a {
  background: var(--deep) !important;
  color: var(--white) !important;
  border: 1px solid rgba(0,198,212,.3) !important;
  transition: all .3s ease;
}
.leaflet-control-zoom a:hover {
  background: var(--cyan) !important;
  color: var(--navy) !important;
}
.leaflet-control-attribution {
  background: rgba(4,16,30,.85) !important;
  color: var(--fog) !important;
  font-size: .7rem !important;
}
.leaflet-control-attribution a {
  color: var(--cyan) !important;
  font-weight: 600 !important;
}

/* Marqueur custom cyan */
.qbe-marker {
  background: var(--cyan);
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 14px rgba(0,198,212,.5);
  width: 28px !important;
  height: 28px !important;
  margin-left: -14px !important;
  margin-top: -28px !important;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}
.qbe-marker:hover {
  transform: rotate(-45deg) scale(1.2);
  box-shadow: 0 6px 20px rgba(0,198,212,.8);
}
.qbe-marker::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 6px;
}

/* Label flottant sur marqueur */
.qbe-marker-label {
  background: var(--deep) !important;
  border: 1px solid rgba(0,198,212,.3) !important;
  color: var(--white) !important;
  padding: .5rem .9rem !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: .85rem !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.4) !important;
}
.qbe-marker-label::before {
  border-top-color: var(--deep) !important;
}

@media (max-width: 640px) {
  .destinations-map-section { padding: 4rem 1.5rem; }
  .map-block__canvas { height: 400px !important; }
}

/* ========================================
   FIX NAV FIXED - Espace pour que le contenu
   ne passe pas sous le header
   ======================================== */

/* Toutes les pages internes (pas la home qui a le slider en 100vh) */
.page-hero {
  padding-top: 9rem !important;
}

@media (max-width: 768px) {
  .page-hero {
    padding-top: 7rem !important;
  }
}

/* Charter detail (meme logique) */
.charter-hero {
  padding-top: 11rem !important;
}
@media (max-width: 768px) {
  .charter-hero {
    padding-top: 8rem !important;
  }
}

/* Article page (meme logique) */
.article-page__hero {
  padding-top: 11rem !important;
}
@media (max-width: 768px) {
  .article-page__hero {
    padding-top: 8rem !important;
  }
}

/* ========================================
   PAGE HERO - Destination detail + autres pages
   Design aligne sur le slider de la home
   Bebas Neue geant, centre, premium
   ======================================== */
.page-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 5% 6rem !important;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 50%, var(--mid) 100%);
}

/* Overlay sombre SI image de fond */
.page-hero[style*="background-image"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(4,16,30,.5) 0%, rgba(4,16,30,.85) 100%);
  z-index: 1;
}

/* Pattern subtil SI pas d'image */
.page-hero:not([style*="background-image"])::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(0,198,212,.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(240,165,0,.08) 0%, transparent 50%);
  z-index: 1;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.page-hero .eyebrow {
  display: inline-block;
  color: var(--cyan);
  font-size: .82rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(-10px);
  animation: heroFadeDown .8s ease .1s forwards;
}
.page-hero .eyebrow a {
  color: inherit !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  transition: color .3s ease;
}
.page-hero .eyebrow a:hover {
  color: var(--white) !important;
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: var(--fs-hero) !important;
  line-height: 0.9 !important;
  letter-spacing: 0.02em;
  font-weight: 400 !important;
  color: var(--white) !important;
  text-transform: uppercase;
  margin: 0 0 2rem !important;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s ease .3s forwards;
}

.page-hero .hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: var(--fs-lg);
  line-height: 1.5;
  color: var(--fog);
  max-width: 760px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp .8s ease .5s forwards;
}

.page-hero .hero-meta {
  display: inline-flex !important;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  color: var(--cyan);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 1rem 2rem;
  border: 1px solid rgba(0,198,212,.3);
  border-radius: 50px;
  background: rgba(4,16,30,.4);
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp .8s ease .7s forwards;
}
.page-hero .hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

/* Scroll indicator sur page-hero */
.page-hero::after {
  content: "DÉCOUVRIR";
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fog);
  z-index: 3;
  animation: fadeIn 1.5s 1.2s both;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeDown {
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   DESTINATION CONTENT - Body section
   ======================================== */
.destination-content {
  background: var(--deep);
  padding: 6rem 5% !important;
}
.destination-content .container {
  max-width: 1200px;
  margin: 0 auto;
}
.destination-content .charter-detail-content {
  color: var(--fog);
  font-size: 1.08rem;
  line-height: 1.75;
}
.destination-content .section-label {
  color: var(--cyan);
  font-size: .82rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.2rem;
  display: block;
}
.destination-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  line-height: 1.3;
}
.destination-content h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.4rem;
  margin: 2rem 0 .8rem;
}
.destination-content p { margin-bottom: 1.4rem; }

/* ========================================
   SECTION "REJOINDRE" - Alignee sur slider
   ======================================== */
.charter-autres .section-title {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: var(--fs-xl) !important;
  line-height: 1 !important;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--white) !important;
  text-align: center;
  margin: 0 0 3rem !important;
}
.charter-autres .section-label {
  display: block;
  text-align: center;
  color: var(--cyan);
  font-size: .82rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero {
    padding: 8rem 1.5rem 4rem !important;
    min-height: 70vh;
  }
  .page-hero h1 { font-size: clamp(2.5rem, 10vw, 5rem) !important; }
  .page-hero .hero-sub { font-size: 1.05rem; }
  .page-hero .hero-meta {
    gap: 1rem;
    font-size: .85rem;
    padding: .8rem 1.5rem;
  }
  .page-hero::after { display: none; }
  .destination-content { padding: 3rem 1.5rem !important; }
}

/* ========================================
   PAGE CONTENT - Body apres hero
   ======================================== */
.page-content {
  background: var(--deep);
  padding: 5rem 5% !important;
  color: var(--fog);
}
.page-content__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-content .lead {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--fog);
  line-height: 1.65;
  margin: 0 auto 2.5rem;
  max-width: 820px;
  text-align: center;
}
.page-content .content {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 820px;
  margin: 0 auto;
}
.page-content .content h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  font-size: 1.9rem;
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}
.page-content .content h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--gold, #f0a500);
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  margin: 2rem 0 0.8rem;
  line-height: 1.1;
}
.page-content .content p { margin-bottom: 1.4rem; }
.page-content .content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.page-content .content blockquote {
  border-left: 3px solid var(--cyan);
  padding: 1rem 0 1rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--white);
  background: rgba(0,198,212,.05);
}

/* ========================================
   GALLERY CARDS - Cards sur /galerie (mode C)
   ======================================== */
.gallery-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 3rem auto 0;
}
.gallery-card {
  display: flex;
  flex-direction: column;
  background: var(--navy);
  border: 1px solid rgba(0,198,212,.12);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,198,212,.4);
  box-shadow: 0 20px 40px rgba(0,198,212,.15);
}
.gallery-card__img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--deep);
}
.gallery-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}
.gallery-card:hover .gallery-card__img img { transform: scale(1.08); }
.gallery-card__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--navy), var(--ocean));
  color: rgba(255,255,255,.25);
}
.gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(4,16,30,.55) 100%);
  pointer-events: none;
}
.gallery-card__body {
  padding: 1.5rem 1.8rem 2rem;
}
.gallery-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--white) !important;
  margin: 0 0 .6rem;
  line-height: 1.1;
}
.gallery-card__desc {
  color: var(--fog);
  font-size: .92rem;
  line-height: 1.55;
  margin: 0 0 1.2rem;
}
.gallery-card__cta {
  color: var(--cyan) !important;
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none !important;
  border-bottom: none !important;
}

/* ========================================
   GALLERY BLOCK - Grille images (page detail)
   ======================================== */
.gallery-page-content {
  background: var(--deep);
  padding: 5rem 5%;
}
.gallery-page-content .container {
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-block__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.gallery-block--masonry .gallery-block__grid {
  grid-auto-rows: 200px;
}
.gallery-block--masonry .gallery-block__item:nth-child(4n+1) {
  grid-row: span 2;
}
.gallery-block__item {
  position: relative;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: transform .4s ease, box-shadow .4s ease;
}
.gallery-block--masonry .gallery-block__item { aspect-ratio: auto; height: 100%; }
.gallery-block__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,198,212,.15);
}
.gallery-block__link {
  display: block; width: 100%; height: 100%;
  text-decoration: none !important;
}
.gallery-block__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}
.gallery-block__item:hover img { transform: scale(1.06); }
.gallery-block__item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(4,16,30,.95) 0%, transparent 100%);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease;
}
.gallery-block__item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .gallery-cards { grid-template-columns: repeat(2, 1fr); }
  .gallery-block__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .gallery-cards { grid-template-columns: 1fr; gap: 1.5rem; }
  .gallery-block__grid { grid-template-columns: 1fr; }
  .gallery-page-content { padding: 3rem 1.5rem; }
}

/* ========================================
   LIGHTBOX QBE - Visualisation photos plein ecran
   Zero dependance, design maritime
   ======================================== */
.qbe-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(4, 16, 30, 0.97);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.qbe-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.qbe-lightbox__stage {
  position: relative;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.qbe-lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity .4s ease, transform .4s ease;
}
.qbe-lightbox.is-open .qbe-lightbox__img {
  opacity: 1;
  transform: scale(1);
}
.qbe-lightbox__img.is-loading {
  opacity: 0.3;
}

.qbe-lightbox__caption {
  margin-top: 1.2rem;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  text-align: center;
  max-width: 80ch;
  line-height: 1.5;
}
.qbe-lightbox__caption:empty {
  display: none;
}

.qbe-lightbox__counter {
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cyan);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Boutons controle */
.qbe-lightbox__close,
.qbe-lightbox__prev,
.qbe-lightbox__next {
  position: absolute;
  background: rgba(0, 198, 212, 0.1);
  border: 1px solid rgba(0, 198, 212, 0.3);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
  font-family: inherit;
}
.qbe-lightbox__close:hover,
.qbe-lightbox__prev:hover,
.qbe-lightbox__next:hover {
  background: rgba(0, 198, 212, 0.3);
  border-color: var(--cyan);
  transform: scale(1.08);
}

.qbe-lightbox__close {
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  font-size: 2rem;
  line-height: 1;
  padding-bottom: 4px;
}

.qbe-lightbox__prev,
.qbe-lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  font-size: 2.5rem;
  line-height: 1;
  padding-bottom: 6px;
}
.qbe-lightbox__prev:hover,
.qbe-lightbox__next:hover {
  transform: translateY(-50%) scale(1.08);
}

.qbe-lightbox__prev { left: 2rem; }
.qbe-lightbox__next { right: 2rem; }

/* Masquer fleches si une seule image */
.qbe-lightbox[data-single="1"] .qbe-lightbox__prev,
.qbe-lightbox[data-single="1"] .qbe-lightbox__next,
.qbe-lightbox[data-single="1"] .qbe-lightbox__counter {
  display: none;
}

/* Curseur zoom sur les images cliquables */
.gallery-block__link {
  cursor: zoom-in !important;
}

@media (max-width: 768px) {
  .qbe-lightbox__close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }
  .qbe-lightbox__prev,
  .qbe-lightbox__next {
    width: 45px;
    height: 45px;
    font-size: 2rem;
  }
  .qbe-lightbox__prev { left: 0.5rem; }
  .qbe-lightbox__next { right: 0.5rem; }
  .qbe-lightbox__caption { font-size: 0.9rem; padding: 0 1rem; }
  .qbe-lightbox__counter { bottom: -2rem; font-size: 0.7rem; }
}

/* ═══════════════════════════════════════════════════════════════
   FIX LIGHTBOX — Z-index des contrôles (21/04/2026)
   Sans ce bloc, les boutons close/prev/next ont z-index: auto
   et sont recouverts par l'image (ordre DOM) en desktop.
   ═══════════════════════════════════════════════════════════════ */
.qbe-lightbox__close,
.qbe-lightbox__prev,
.qbe-lightbox__next,
.qbe-lightbox__counter,
.qbe-lightbox__caption {
    z-index: 10;
}

/* Curseur custom au-dessus de la lightbox pour rester visible */
#cursor {
    z-index: 100001;
}

/* ═══════════════════════════════════════════════════════════════
   FIX LIGHTBOX — Z-index des contrôles (21/04/2026)
   Sans ce bloc, les boutons close/prev/next ont z-index: auto
   et sont recouverts par l'image (ordre DOM) en desktop.
   ═══════════════════════════════════════════════════════════════ */
.qbe-lightbox__close,
.qbe-lightbox__prev,
.qbe-lightbox__next,
.qbe-lightbox__counter,
.qbe-lightbox__caption {
    z-index: 10;
}

/* Curseur custom au-dessus de la lightbox pour rester visible */
#cursor {
    z-index: 100001;
}

/* ═══════════════════════════════════════════════════════════════
   CONCEPT DUAL QBE — ajout 24/04/2026
   Programmes (home) + Voiliers (liste + détail)
   ═══════════════════════════════════════════════════════════════ */

/* --- Section Nos Programmes (home) --- */
.programs-section {
  padding: 6rem 0;
  background: var(--bg-dark, #0b1a2f);
  position: relative;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .programs-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

.program-card {
  position: relative;
  display: block;
  min-height: 520px;
  border-radius: 0;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.program-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,26,47,0.35) 0%, rgba(11,26,47,0.75) 55%, rgba(11,26,47,0.95) 100%);
  transition: background 0.4s ease;
}

.program-card:hover .program-card-overlay {
  background: linear-gradient(180deg, rgba(11,26,47,0.30) 0%, rgba(11,26,47,0.70) 50%, rgba(11,26,47,0.98) 100%);
}

.program-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 2rem 2rem;
  z-index: 2;
}

.program-card-icon {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.program-card-season {
  display: inline-block;
  align-self: flex-start;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.program-card-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 0.5rem;
  color: #fff;
}

.program-card-subtitle {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0 0 1rem;
  font-style: italic;
  color: var(--cyan, #c8a96e);
}

.program-card-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.85;
  margin: 0 0 1.5rem;
  max-width: 95%;
}

.program-card-cta {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s;
  color: var(--cyan, #c8a96e);
}

.program-card:hover .program-card-cta {
  color: #fff;
}

/* Accents par type */
.program-card--ado { border: 1px solid transparent; }
.program-card--ado:hover { border-color: rgba(200,169,110,0.4); }

.program-card--incentive .program-card-season {
  background: rgba(200,169,110,0.25);
}

.program-card--voiliers .program-card-season {
  background: rgba(255,255,255,0.15);
}

/* --- Page /voiliers (liste) --- */
.boats-list-hero {
  min-height: 50vh;
  background: linear-gradient(135deg, #0b1a2f 0%, #1a3a5f 100%);
}

.boats-list-section {
  padding: 5rem 0 6rem;
  background: var(--bg-dark, #0b1a2f);
}

.boats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

@media (max-width: 850px) {
  .boats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

.boat-card {
  display: block;
  text-decoration: none;
  background: #12233d;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  color: #fff;
}

.boat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.5);
}

.boat-card-cover {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.boat-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 1rem;
  background: rgba(11,26,47,0.85);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan, #c8a96e);
}

.boat-card-body {
  padding: 2rem 1.75rem 1.75rem;
}

.boat-card-name {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
}

.boat-card-tagline {
  color: var(--cyan, #c8a96e);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.boat-card-intro {
  color: #c8d3e3;
  line-height: 1.55;
  margin: 0 0 1.2rem;
  font-size: 0.95rem;
}

.boat-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #96a5bb;
  font-size: 0.85rem;
}

.boat-card-cta {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--cyan, #c8a96e);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* --- Page /voilier/{slug} (détail) --- */
.boat-hero {
  position: relative;
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 0 0 4rem;
}

.boat-hero .page-hero-inner {
  position: relative;
  z-index: 2;
}

.boat-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,26,47,0.35) 0%, rgba(11,26,47,0.85) 100%);
  z-index: 1;
}

.boat-hero-type {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: rgba(200,169,110,0.2);
  border: 1px solid rgba(200,169,110,0.4);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan, #c8a96e);
  margin-bottom: 1rem;
}

.boat-specs-strip {
  padding: 2rem 0;
  background: #091524;
  border-top: 1px solid rgba(200,169,110,0.15);
  border-bottom: 1px solid rgba(200,169,110,0.15);
}

.specs-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.spec-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cyan, #c8a96e);
  line-height: 1.1;
}

.spec-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #96a5bb;
}

.boat-detail-body {
  padding: 5rem 0 3rem;
  background: var(--bg-dark, #0b1a2f);
  color: #dfe8f2;
}

.boat-intro-large {
  font-size: 1.3rem;
  line-height: 1.55;
  max-width: 820px;
  margin: 0 auto 3rem;
  color: #c8d3e3;
  font-weight: 300;
}

.boat-prose {
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.75;
  font-size: 1.05rem;
}

.boat-prose h2,
.boat-section h2 {
  color: var(--cyan, #c8a96e);
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
  font-weight: 700;
}

.boat-prose p { margin: 0 0 1.2rem; }
.boat-prose ul { margin: 0 0 1.5rem; padding-left: 1.5rem; }

.boat-section {
  max-width: 820px;
  margin: 3rem auto 0;
}

.boat-specs-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0.6rem 1.5rem;
  margin: 1rem 0;
}

.boat-specs-detail dt {
  font-weight: 700;
  color: #96a5bb;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.boat-specs-detail dd {
  margin: 0;
}

.boat-spec-note {
  font-style: italic;
  color: #96a5bb;
  border-left: 3px solid var(--cyan, #c8a96e);
  padding-left: 1rem;
  margin: 1.5rem 0 0;
}

.boat-gallery-section {
  padding: 3rem 0 5rem;
  background: var(--bg-dark, #0b1a2f);
}

.boat-gallery-section h2 {
  text-align: center;
  color: var(--cyan, #c8a96e);
  font-size: 2rem;
  margin: 0 0 2.5rem;
}

.boat-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.boat-gallery-item {
  display: block;
  height: 220px;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.boat-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.boat-gallery-item:hover { transform: translateY(-3px); }
.boat-gallery-item:hover img { transform: scale(1.05); }

.boat-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0b1a2f 0%, #1a3a5f 100%);
  text-align: center;
}

.boat-cta-section h2 {
  font-size: 2.2rem;
  color: #fff;
  margin: 0 0 1rem;
}

.boat-cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #c8d3e3;
  font-size: 1.1rem;
}

.boat-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-ghost {
  display: inline-block;
  padding: 0.9rem 2rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.25s;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--cyan, #c8a96e);
}


/* ═══ Carte destinations — marker voilier QBE ═══ */
.qbe-sailboat-marker {
  background: transparent !important;
  border: none !important;
  transition: transform 0.25s ease;
  cursor: pointer;
}
.qbe-sailboat-marker:hover {
  transform: scale(1.18);
  z-index: 1000 !important;
}
.qbe-sailboat-marker svg {
  display: block;
  width: 100%;
  height: 100%;
}
.qbe-marker-label {
  background: rgba(20, 14, 8, 0.92) !important;
  color: #e0c99a !important;
  border: 1px solid #c8a96e !important;
  border-radius: 4px !important;
  padding: 4px 10px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25) !important;
  white-space: nowrap;
}
.qbe-marker-label::before {
  border-top-color: #c8a96e !important;
}
.map-block__canvas {
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(20, 14, 8, 0.12);
  overflow: hidden;
}


/* ═══ Maillage interne — Destinations voisines (page port) ═══ */
.dest-nearby {
  background: linear-gradient(135deg, #00c6d4 0%, #1a4d7a 50%, #0e3460 100%);
  padding: 4.5rem 0 5rem;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.dest-nearby::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom left, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.dest-nearby .container {
  position: relative;
  z-index: 1;
}
.dest-nearby .section-label {
  color: rgba(255,255,255,0.75) !important;
}
.dest-nearby .section-title {
  margin-bottom: 0.6rem;
  color: #ffffff !important;
}
.dest-nearby-intro {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 640px;
}
.dest-nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.dest-nearby-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 1.5rem 1.25rem;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  backdrop-filter: blur(4px);
}
.dest-nearby-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.22);
}
.dest-nearby-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.dest-nearby-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1208;
}
.dest-nearby-card__dist {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--pink, #c8a96e);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.dest-nearby-card__intro {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(40,30,20,0.72);
}
.dest-nearby-card__cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--pink, #c8a96e);
  letter-spacing: 0.04em;
  margin-top: auto;
}
.dest-nearby-all {
  text-align: center;
}
@media (max-width: 640px) {
  .dest-nearby { padding: 3rem 0 4rem; }
  .dest-nearby-grid { grid-template-columns: 1fr; }
}


/* ═══ Page port — Bloc Stages Ados + Incentive ═══ */
.dest-cta-programs {
  padding: 4.5rem 0 4rem;
  background: linear-gradient(135deg, #0e3460 0%, #1a4d7a 50%, #00c6d4 100%);
  position: relative;
  overflow: hidden;
}
.dest-cta-programs::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.dest-cta-programs .container {
  position: relative;
  z-index: 1;
}
.dest-cta-programs .section-label {
  color: rgba(255,255,255,0.75) !important;
}
.dest-cta-programs .section-title {
  margin-bottom: 2.5rem;
  color: #ffffff !important;
}
.dest-programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
  max-width: 980px;
  margin: 0 auto;
}
.dest-program-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.25rem 2rem;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(4px);
}
.dest-program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
/* Lien SEO sur le H3 — invisible mais cliquable */
.dest-program-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.dest-program-card h3 a:hover {
  color: var(--pink, #c8a96e);
}
.dest-program-icon {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}
.dest-program-icon {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--pink, #c8a96e);
}
.dest-program-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  margin: 0;
  color: #1a1208;
  line-height: 1.25;
}
.dest-program-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(40,30,20,0.78);
  flex-grow: 1;
}
.dest-program-card .btn-pink {
  align-self: flex-start;
  margin-top: 0.5rem;
}
@media (max-width: 720px) {
  .dest-cta-programs { padding: 3rem 0 2rem; }
  .dest-programs-grid { grid-template-columns: 1fr; }
  .dest-program-card { padding: 1.75rem 1.5rem; }
}


/* ═══ FIX couleurs cards Stages/Incentive (sur fond dégradé) ═══ */
.dest-cta-programs .dest-program-card,
.dest-cta-programs .dest-program-card * {
  color: #1a1208 !important;
}
.dest-cta-programs .dest-program-card h3 {
  color: #1a1208 !important;
}
.dest-cta-programs .dest-program-card h3 a {
  color: #1a1208 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}
.dest-cta-programs .dest-program-card h3 a:hover {
  color: #c8a96e !important;
}
.dest-cta-programs .dest-program-card p {
  color: rgba(40,30,20,0.78) !important;
}
.dest-cta-programs .dest-program-card .btn-pink {
  background: #c8a96e !important;
  color: #ffffff !important;
  border: 1px solid #c8a96e !important;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.dest-cta-programs .dest-program-card .btn-pink:hover {
  background: #b8985e !important;
  border-color: #b8985e !important;
}

/* ═══ FIX couleurs cards Maillage interne (sur fond dégradé) ═══ */
.dest-nearby .dest-nearby-card,
.dest-nearby .dest-nearby-card * {
  color: #1a1208;
}
.dest-nearby .dest-nearby-card__name {
  color: #1a1208 !important;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.dest-nearby .dest-nearby-card__dist {
  color: #c8a96e !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.dest-nearby .dest-nearby-card__intro {
  color: rgba(40,30,20,0.72) !important;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}
.dest-nearby .dest-nearby-card__cta {
  color: #c8a96e !important;
  font-weight: 500;
  font-size: 0.85rem;
}

/* Bouton "Voir toutes les destinations" — adapter pour fond foncé */
.dest-nearby .dest-nearby-all .btn-pink {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.5) !important;
  color: #ffffff !important;
  backdrop-filter: blur(4px);
}
.dest-nearby .dest-nearby-all .btn-pink:hover {
  background: rgba(255,255,255,0.2) !important;
  border-color: #ffffff !important;
}


/* ===== SCROLL OFFSET POUR ANCRES (sous navbar fixe) ===== */
#about, #expeditions, #stages-ado, #groupes, #privatisation,
#destinations-bretagne, #voiliers, #galerie, #temoignages,
#about-director, #contact, #apply {
  scroll-margin-top: 90px;
}

/* ===== STYLES NOUVELLES SECTIONS ===== */
.destinations-section, .boats-section, .contact-section {
  padding: 6rem 0;
  position: relative;
}
.destinations-section .lead-text,
.boats-section .lead-text,
.contact-section .lead-text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.7;
  max-width: 780px;
  margin: 2rem auto;
  text-align: center;
  color: rgba(255,255,255,0.85);
}
.section-cta { text-align: center; margin-top: 2.5rem; }

.contact-info {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 2rem; margin-top: 3rem;
}
.contact-item {
  display: inline-flex; align-items: center; gap: 0.8rem;
  padding: 1rem 1.5rem; border: 1px solid rgba(200,169,110,0.3);
  border-radius: 8px; color: var(--gold); text-decoration: none;
  transition: all 0.3s ease; font-family: var(--font-body); font-size: 1rem;
}
.contact-item:hover { background: rgba(200,169,110,0.1); border-color: var(--gold); }
.contact-icon { font-size: 1.3rem; }
.anchor-wrap { scroll-margin-top: 90px; }
.anchor-alias { display:block; height:0; visibility:hidden; }


/* ========================================================
   PAGE HERO AVEC IMAGE COVER (pages intérieures)
   ======================================================== */
.page-hero {
  position: relative;
  min-height: 60vh;
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}
.page-hero--with-image {
  background-color: #0a1218;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(10, 18, 24, 0.85) 100%
  );
}
.page-hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.page-hero-inner .eyebrow {
  display: inline-block;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold, #c8a96e);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.page-hero-inner h1 {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 1rem 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.page-hero-inner .hero-sub {
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .page-hero { min-height: 50vh; }
  .page-hero-inner { padding: 3rem 1.5rem; }
}


/* ========================================================
   STAGES-ADO : Galerie photos jeunes + Section sécurité
   ======================================================== */

/* --- Intro --- */
.stages-intro {
  max-width: 900px;
  margin: 4rem auto 2rem;
  padding: 0 2rem;
  text-align: center;
}
.stages-intro .lead {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.6;
  color: var(--text-light, #d6d6d6);
}

/* --- Galerie 6 photos --- */
.stages-gallery {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}
.stages-gallery h2 {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #fff;
}
.stages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stages-grid__item {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4 / 5;
  position: relative;
  cursor: pointer;
}
.stages-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.stages-grid__item:hover img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .stages-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stages-grid { grid-template-columns: 1fr; }
}

/* --- Section Sécurité --- */
.stages-security {
  max-width: 900px;
  margin: 5rem auto;
  padding: 3rem 2rem;
  background: rgba(200, 169, 110, 0.04);
  border-left: 3px solid var(--gold, #c8a96e);
  border-radius: 4px;
}
.stages-security h2 {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  margin: 0 0 1.5rem 0;
  color: #fff;
}
.stages-security h3 {
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold, #c8a96e);
  margin: 2.2rem 0 0.8rem 0;
  letter-spacing: 0.02em;
}
.stages-security p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light, #d6d6d6);
  margin: 0 0 1rem 0;
}
.stages-security .lead {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.stages-security strong {
  color: #fff;
  font-weight: 600;
}
.security-cta {
  margin-top: 3rem !important;
  padding-top: 2rem;
  border-top: 1px solid rgba(200, 169, 110, 0.2);
  text-align: center;
}
.security-cta strong {
  display: inline-block;
  margin-bottom: 1rem;
}


/* ========================================================
   PAGES INTÉRIEURES — Harmonisation typographique (home)
   Force les polices home sur tout le contenu des pages internes
   ======================================================== */

.page-content,
.page-content p,
.page-content li,
.page-content a,
.page-content span,
.page-content blockquote,
.stages-intro p,
.stages-security p,
.stages-security li,
.stages-gallery p,
.contact-section,
.contact-section p,
.contact-section label,
.contact-section input,
.contact-section textarea,
.boats-list-section,
.charter-list-section,
.destination-list-section {
  font-family: 'DM Sans', sans-serif;
}

/* Tous les H1 dans le contenu : Bebas Neue (comme la home) */
.page-content h1,
.stages-intro h1,
.stages-gallery h1,
.stages-security h1,
.contact-section h1 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 1.5rem 0;
}

/* H2 dans le contenu : Bebas Neue large (comme home) */
.page-content h2,
.stages-intro h2,
.stages-gallery h2,
.stages-security h2,
.contact-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin: 2.5rem 0 1.2rem 0;
}

/* H3 : Bebas Neue (uniforme et moderne) */
.page-content h3,
.stages-security h3,
.stages-gallery h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  letter-spacing: 0.04em;
  color: var(--gold, #f0a500);
  margin: 2rem 0 0.8rem 0;
  line-height: 1.1;
  text-transform: uppercase;
}

/* Variante : si tu préfères H3 en Bebas Neue (uniforme), commente le bloc au-dessus
   et décommente celui-ci :
.page-content h3,
.stages-security h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--gold, #f0a500);
  margin: 2rem 0 0.7rem 0;
}
*/

/* Paragraphes : DM Sans, lecture confortable */
.page-content p,
.stages-intro p,
.stages-security p,
.contact-section p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fog, #b8cfe0);
  margin: 0 0 1rem 0;
}

/* Lead paragraph (chapeau) */
.page-content .lead,
.stages-intro .lead,
.stages-security .lead {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--white, #f4f8fc);
  margin-bottom: 2rem;
}

/* Strong dans le contenu */
.page-content strong,
.stages-security strong,
.contact-section strong {
  font-weight: 600;
  color: #fff;
}

/* Liens dans le contenu : couleur cyan home */
.page-content a:not(.btn-pink),
.stages-security a:not(.btn-pink),
.contact-section a:not(.btn-pink) {
  color: var(--cyan, #00c6d4);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.page-content a:not(.btn-pink):hover,
.stages-security a:not(.btn-pink):hover {
  border-bottom-color: var(--cyan, #00c6d4);
}

/* Listes */
.page-content ul,
.stages-security ul {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: var(--fog, #b8cfe0);
  padding-left: 1.5rem;
  margin: 0 0 1.5rem 0;
}
.page-content li,
.stages-security li {
  margin-bottom: 0.5rem;
}
