/* ============================================================
   LB PAMPELONNE — Redesign 2026
   Palette : Charcoal · Cream · Terracotta · Deep Blue
   Polices : DM Serif Display (titres) + DM Sans (texte)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Core palette */
  --charcoal:     #1a1a2e;
  --charcoal-90:  #2d2d44;
  --deep-blue:    #16425b;
  --ocean:        #2a6f97;
  --sky:          #81b4d4;
  --terracotta:   #c4784a;
  --terra-light:  #d4976e;
  --terra-pale:   #f5e6d8;

  /* Neutrals */
  --cream:        #faf8f4;
  --cream-dark:   #f0ece4;
  --white:        #ffffff;
  --gray-900:     #1f2937;
  --gray-700:     #374151;
  --gray-500:     #6b7280;
  --gray-400:     #9ca3af;
  --gray-200:     #e5e7eb;
  --gray-100:     #f3f4f6;

  /* Accent */
  --gold:         #b8960c;
  --gold-light:   #d4b24a;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-accent:  'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-py:   120px;
  --container:    1280px;
  --gap:          32px;

  /* Shadows */
  --shadow-xs:    0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm:    0 4px 12px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg:    0 20px 50px rgba(0,0,0,0.12);
  --shadow-xl:    0 30px 80px rgba(0,0,0,0.18);

  /* Transitions */
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:     cubic-bezier(0.33, 1, 0.68, 1);
  --trans:        0.4s var(--ease);
  --trans-fast:   0.25s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--gray-700);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

::selection {
  background: var(--terracotta);
  color: var(--white);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.8vw, 3.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 16px;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--gray-500);
  max-width: 580px;
}

.italic-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--deep-blue);
}

/* ============================================================
   CONTAINER & LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: var(--section-py) 0;
}

.section--cream  { background: var(--cream); }
.section--white  { background: var(--white); }
.section--light  { background: var(--white); }
.section--sand   { background: var(--cream); }
.section--dark   { background: var(--charcoal); color: var(--white); }
.section--navy   { background: var(--charcoal); color: var(--white); }
.section--ocean  { background: linear-gradient(135deg, var(--charcoal) 0%, var(--deep-blue) 100%); color: var(--white); }

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}

.section__header h2 { margin-bottom: 20px; }
.section__header .lead { margin: 0 auto; }

.section--dark h2, .section--dark h3, .section--dark h4,
.section--navy h2, .section--navy h3, .section--navy h4,
.section--ocean h2, .section--ocean h3, .section--ocean h4 { color: var(--white); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: background var(--trans), padding var(--trans), box-shadow var(--trans), backdrop-filter var(--trans);
}

.navbar.scrolled {
  background: rgba(26, 26, 46, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Nav links */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.navbar__nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 10px 20px;
  border-radius: 100px;
  transition: color var(--trans-fast), background var(--trans-fast);
  white-space: nowrap;
  position: relative;
}

.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 1.5px;
  background: var(--terracotta);
  transition: transform var(--trans-fast);
}

.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--white);
}

.navbar__nav a:hover::after,
.navbar__nav a.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* CTA button */
.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta);
  color: var(--white) !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  padding: 12px 28px !important;
  border-radius: 100px !important;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans) !important;
  white-space: nowrap;
}

.navbar__cta:hover {
  background: var(--terra-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196,120,74,0.35) !important;
}

/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1.5px solid rgba(255,255,255,0.45);
  color: var(--white) !important;
  font-weight: 600 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px !important;
  border-radius: 100px;
  white-space: nowrap;
  transition: border-color var(--trans), background var(--trans);
  text-decoration: none !important;
}
.lang-switch:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.12);
}
@media (max-width: 768px) {
  .navbar .lang-switch { display: none; }
  .mobile-lang-switch {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid rgba(255,255,255,0.4);
    color: var(--white) !important;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 28px;
    border-radius: 100px;
    text-decoration: none !important;
    margin-top: 8px;
  }
}
@media (min-width: 769px) {
  .mobile-lang-switch { display: none; }
}

/* Mobile menu toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  cursor: pointer;
}

.navbar__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}

.navbar__toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile drawer */
.navbar__mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--charcoal);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow: hidden;
}

.navbar__mobile.open {
  opacity: 1;
  pointer-events: all;
}

.navbar__mobile a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  padding: 10px 32px;
  transition: color var(--trans);
  opacity: 0.8;
}

.navbar__mobile a:hover { color: var(--terracotta); opacity: 1; }

.navbar__mobile .mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.6;
  transition: opacity var(--trans);
}

.navbar__mobile .mobile-close:hover { opacity: 1; }

.navbar__mobile .mobile-cta {
  margin-top: 32px;
  background: var(--terracotta);
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px !important;
  border-radius: 100px;
  max-width: 85vw;
  text-align: center;
  opacity: 1 !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 120px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  transform: scale(1.08);
  transition: transform 12s ease;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,26,46,0.4) 0%,
    rgba(26,26,46,0.15) 40%,
    rgba(26,26,46,0.3) 70%,
    rgba(26,26,46,0.7) 100%
  );
}

.hero.loaded .hero__bg {
  transform: scale(1);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero__logo {
  /* Absolute positioned within .hero at all breakpoints */
  position: absolute;
  left: 50%;
  top: clamp(80px, 12vh, 120px);
  transform: translateX(-50%);
  width: min(180px, 45vw);
  height: auto;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,0.35));
  opacity: 0.75;
  z-index: 3;
  animation: heroLogoIn 1.4s var(--ease) both;
}

@keyframes heroLogoIn {
  from { opacity: 0; transform: translateX(-50%) scale(0.88) translateY(24px); }
  to   { opacity: 0.75; transform: translateX(-50%) scale(1) translateY(0); }
}

/* Desktop: centré dans l'espace libre à gauche du texte */
@media (min-width: 769px) {
  .hero__logo {
    left: 135px;
    transform: translateX(-50%);
    top: clamp(100px, 13vh, 150px);
    width: min(230px, 15vw);
  }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
  max-width: 800px;
  line-height: 1.25;
  animation: heroTextIn 1.2s var(--ease) 0.2s both;
}

.hero h1 em {
  font-style: normal;
  color: var(--terra-light);
  font-family: var(--font-accent);
  font-style: italic;
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 48px;
  max-width: 560px;
  line-height: 1.8;
  animation: heroTextIn 1.2s var(--ease) 0.4s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: heroTextIn 1.2s var(--ease) 0.6s both;
}

@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Hero page interne */
.page-hero {
  position: relative;
  height: 72vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,46,0.3) 0%, rgba(26,26,46,0.7) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.page-hero__content h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 8px rgba(0,0,0,0.4);
}
.page-hero__content .eyebrow { color: var(--terra-light); }

/* Text shadow on all overlay text */
.hero h1 {
  text-shadow: 0 2px 30px rgba(0,0,0,0.5), 0 1px 10px rgba(0,0,0,0.35);
}
.hero__sub {
  text-shadow: 0 1px 16px rgba(0,0,0,0.45);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 100px;
  transition: all var(--trans);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:hover { transform: translateY(-2px); }

/* Primary */
.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196,120,74,0.25);
}
.btn--primary:hover {
  background: var(--terra-light);
  box-shadow: 0 8px 32px rgba(196,120,74,0.35);
}

/* Outline white */
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

/* Outline dark */
.btn--outline-navy,
.btn--outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn--outline-navy:hover,
.btn--outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* Outline terracotta */
.btn--outline-gold {
  background: transparent;
  color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
}
.btn--outline-gold:hover {
  background: var(--terracotta);
  color: var(--white);
}

/* WhatsApp */
.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.2);
}
.btn--whatsapp:hover {
  background: #20BD5A;
  box-shadow: 0 8px 28px rgba(37,211,102,0.3);
}

.btn--whatsapp::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") no-repeat center/contain;
}

/* Large */
.btn--lg { padding: 18px 44px; font-size: 0.85rem; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform var(--trans), box-shadow var(--trans);
  animation: pulse-wa 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  animation: none;
}

.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.55), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ============================================================
   IMAGE SHOWCASE (Capelli hero gallery)
   ============================================================ */
.showcase {
  padding: 0;
  overflow: hidden;
}

.showcase__scroll {
  display: flex;
  gap: 16px;
  padding: 0 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.showcase__scroll::-webkit-scrollbar { display: none; }

.showcase__item {
  flex: 0 0 auto;
  width: 65vw;
  max-width: 900px;
  height: 55vh;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: center;
  position: relative;
}

.showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.showcase__item:hover img {
  transform: scale(1.04);
}

/* ============================================================
   STRIP - KEY FIGURES
   ============================================================ */
.strip {
  background: var(--charcoal);
  padding: 64px 0;
  position: relative;
}

.strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,120,74,0.3), transparent);
}

.strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.strip__item {
  text-align: center;
  padding: 0 32px;
  position: relative;
}

.strip__item::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 80%;
  background: rgba(255,255,255,0.06);
}

.strip__item:last-child::after { display: none; }

.strip__icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  display: block;
  opacity: 0.7;
}

.strip__number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--terracotta);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.strip__label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================================
   BOAT CARDS
   ============================================================ */
.boat-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.04);
}

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

.boat-card__img {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.boat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.boat-card:hover .boat-card__img img {
  transform: scale(1.06);
}

.boat-card__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(26,26,46,0.85);
  backdrop-filter: blur(8px);
  color: var(--terra-light);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}

.boat-card__body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.boat-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.boat-card__meta span {
  font-size: 0.78rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 5px;
}

.boat-card__meta span::before { content: attr(data-icon); }

.boat-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.boat-card__desc {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}

.boat-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.feature-tag {
  background: var(--terra-pale);
  color: var(--terracotta);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 100px;
}

.boat-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ============================================================
   BOAT DETAIL (Location page)
   ============================================================ */
.boat-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-200);
}

.boat-detail:last-child { border-bottom: none; }

.boat-detail__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.boat-detail__layout.reverse { direction: rtl; }
.boat-detail__layout.reverse > * { direction: ltr; }

.boat-detail__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 10px;
  border-radius: 20px;
  overflow: hidden;
}

.boat-detail__gallery .main-photo {
  grid-column: 1 / -1;
  height: 280px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s var(--ease);
}

.boat-detail__gallery .thumb {
  height: 200px;
  object-fit: cover;
  width: 100%;
  cursor: pointer;
  transition: transform 0.5s var(--ease), filter 0.3s ease;
}

.boat-detail__gallery .thumb:hover { transform: scale(1.03); }

.boat-detail__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
  background: var(--cream);
  border-radius: 16px;
  padding: 28px;
}

.spec-item__label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.spec-item__value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--charcoal);
}

.boat-detail__points {
  margin: 24px 0;
}

.boat-detail__points li {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.92rem;
  color: var(--gray-700);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.boat-detail__points li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  margin-top: 8px;
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196,120,74,0.06) 0%, transparent 60%);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px 32px;
  transition: transform var(--trans), background var(--trans);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
}

.testimonial-card__stars {
  color: var(--terracotta);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial-card__text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 28px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--deep-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-card__name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}

.testimonial-card__origin {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* Inline testimonial (between sections) */
.testimonial-inline {
  padding: 60px 0;
  background: var(--cream-dark);
  text-align: center;
}

.testimonial-inline__quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: var(--charcoal);
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.testimonial-inline__quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--terracotta);
  display: block;
  line-height: 0.5;
  margin-bottom: 16px;
}

.testimonial-inline__author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-500);
}

/* ============================================================
   DESTINATIONS
   ============================================================ */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dest-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.dest-card--wide { grid-column: span 2; aspect-ratio: unset; min-height: 400px; }

.dest-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
}

.dest-card:hover .dest-card__bg { transform: scale(1.06); }

.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,46,0) 30%, rgba(26,26,46,0.85) 100%);
}

.dest-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
  color: var(--white);
}

.dest-card__content .eyebrow { color: var(--terra-light); margin-bottom: 8px; }

.dest-card__content h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.dest-card__content p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

/* Destination backgrounds */
.dest-bg-porquerolles {
  background-image: url('../images/site/plage-notre-dame-porquerolles.jpg') !important;
  background-size: cover;
  background-position: center 70%;
}
.dest-bg-portcros {
  background-image: url('../images/site/port-cros.webp') !important;
  background-size: cover;
  background-position: center;
}
.dest-bg-lerins {
  background-image: url('../images/site/Ile-lerins.jpg') !important;
  background-size: cover;
  background-position: center;
}
.dest-bg-esterel {
  background-image: url('../images/site/esterel 1.jpg') !important;
  background-size: cover;
  background-position: center;
}

/* ============================================================
   TAXI SECTION
   ============================================================ */
.taxi-section {
  position: relative;
  overflow: hidden;
}

.taxi-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.taxi-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.9) 0%, rgba(22,66,91,0.75) 100%);
}

.taxi-section__content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.taxi-section h2, .taxi-section h3 { color: var(--white); }

.route-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.route-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(8px);
  transition: background var(--trans), border-color var(--trans);
}

.route-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.route-card__route {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.route-card__from, .route-card__to {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
}

.route-card__arrow {
  color: var(--terracotta);
  font-size: 1.4rem;
  flex: 1;
  text-align: center;
}

.route-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* Taxi advantages */
.taxi-advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.adv-item {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
}

.adv-item__icon { font-size: 2.2rem; display: block; margin-bottom: 16px; }
.adv-item__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.adv-item p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ============================================================
   USP GRID
   ============================================================ */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.usp-item {
  padding: 40px 32px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow-xs);
  transition: transform var(--trans), box-shadow var(--trans);
}

.usp-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.usp-item__icon {
  width: 56px;
  height: 56px;
  background: var(--terra-pale);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.usp-item h4 { margin-bottom: 12px; }

.usp-item p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ============================================================
   ACTIVITY CARDS
   ============================================================ */
.activity-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--trans), box-shadow var(--trans);
}
.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.activity-card__icon { font-size: 2.5rem; margin-bottom: 16px; }
.activity-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.activity-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.75; margin-bottom: 16px; }
.activity-card__boats { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }

/* Activity cards with photos */
.activity-card--photo {
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.activity-card__img {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.activity-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.activity-card--photo:hover .activity-card__img img {
  transform: scale(1.06);
}

.activity-card--photo .activity-card__body {
  padding: 28px;
}

.activity-card--photo .activity-card__boats {
  justify-content: flex-start;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform var(--trans), box-shadow var(--trans);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.04);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-card__thumb {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.blog-card:hover .blog-card__thumb img {
  transform: scale(1.06);
}

.blog-card__category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(26,26,46,0.8);
  backdrop-filter: blur(8px);
  color: var(--terra-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

.blog-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__date {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  flex: 1;
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-card .read-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--trans), color var(--trans);
  text-transform: uppercase;
}

.blog-card:hover .read-more {
  gap: 12px;
}

.blog-card .read-more::after { content: '\2192'; }

/* Blog article page */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.article-content h2 { font-size: 1.7rem; margin: 40px 0 16px; }
.article-content h3 { font-size: 1.3rem; margin: 32px 0 12px; }
.article-content p { font-size: 1rem; color: var(--gray-700); line-height: 1.85; margin-bottom: 20px; }
.article-content ul, .article-content ol { margin: 16px 0 24px 20px; }
.article-content li { margin-bottom: 10px; font-size: 0.97rem; line-height: 1.75; color: var(--gray-700); }
.article-content ul li { list-style-type: disc; }
.article-content ol li { list-style-type: decimal; }

.article-content blockquote {
  border-left: 3px solid var(--terracotta);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--terra-pale);
  border-radius: 0 16px 16px 0;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--deep-blue);
}

.article-sidebar { position: sticky; top: 100px; }

.sidebar-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid rgba(0,0,0,0.04);
}

.sidebar-card h4 { margin-bottom: 16px; }
.sidebar-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--deep-blue) 100%);
  padding: 100px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,120,74,0.08) 0%, transparent 70%);
}

.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 48px; max-width: 560px; margin-left: auto; margin-right: auto; }

.cta-band__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
  justify-content: center;
}

.contact-info a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--trans);
}

.contact-info a:hover { color: var(--terra-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0f0f1e;
  color: rgba(255,255,255,0.5);
  padding: 80px 0 36px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer__brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 4px;
}

.footer__brand .brand-name span { color: var(--terracotta); }

.footer__brand .brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 24px;
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer__brand .footer-contacts {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__brand .footer-contacts a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color var(--trans);
}

.footer__brand .footer-contacts a:hover { color: var(--terracotta); }

.footer__col h5 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
}

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

.footer__col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--trans);
}

.footer__col ul li a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom p { font-size: 0.75rem; }
.footer__bottom a { color: var(--terracotta); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15,15,30,0.96);
  align-items: center;
  justify-content: center;
  padding: 40px;
  backdrop-filter: blur(8px);
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.6;
  transition: opacity var(--trans);
}

.lightbox__close:hover { opacity: 1; }

/* ============================================================
   BADGES / TAGS
   ============================================================ */
.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

.badge--gold  { background: var(--terra-pale); color: var(--terracotta); }
.badge--ocean { background: rgba(129,180,212,0.15); color: var(--ocean); }
.badge--navy  { background: var(--charcoal); color: var(--white); }

.skipper-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--charcoal), var(--deep-blue));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-top: 12px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-white  { color: var(--white); }
.text-terra  { color: var(--terracotta); }
.text-gray   { color: var(--gray-500); }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }

.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

.max-w-md { max-width: 560px; }
.mx-auto  { margin-left: auto; margin-right: auto; }

.gold-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--terracotta);
  margin: 24px 0;
}

.gold-line--center { margin: 24px auto; }

/* ============================================================
   NAVBAR LOGO IMAGE
   Hidden on desktop, visible on mobile only
   ============================================================ */
.navbar__logo-link { display: none; }
.navbar__logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: 0.92;
  transition: height var(--trans), opacity var(--trans);
}
.navbar__logo-img:hover { opacity: 1; }

/* ============================================================
   FLEET NAV CARDS (Location page)
   ============================================================ */
.fleet-nav-card {
  display: block;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform var(--trans), box-shadow var(--trans);
}
.fleet-nav-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.fleet-nav-card__img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.fleet-nav-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.fleet-nav-card:hover .fleet-nav-card__img img { transform: scale(1.06); }
.fleet-nav-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(26,26,46,0.85);
  backdrop-filter: blur(8px);
  color: var(--terra-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}
.fleet-nav-card__body { padding: 24px; }
.fleet-nav-card__body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.fleet-nav-card__meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--gray-500); margin-bottom: 8px; }
.fleet-nav-card__body p { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 12px; }
.fleet-nav-card__cta {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--trans);
}

/* ============================================================
   RESPONSIVE — TABLET <=1024px
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }

  .strip__grid { grid-template-columns: repeat(3, 1fr); }
  .strip__item::after { display: none; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .article-layout { grid-template-columns: 1fr; gap: 40px; }
  .article-sidebar { position: static; }

  .boat-detail__layout { grid-template-columns: 1fr; gap: 40px; }
  .boat-detail__layout.reverse { direction: ltr; }

  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card--wide { grid-column: span 1; min-height: 300px; }

  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__grid > :nth-child(3) { grid-column: span 2; max-width: 50%; justify-self: center; }

  .showcase__item { width: 75vw; }
}

/* Desktop: masquer le bandeau photos sous le héro */
@media (min-width: 769px) {
  .showcase { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE <=768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .container { padding: 0 20px; }

  /* Nav */
  .navbar { padding: 14px 0; }
  .navbar.scrolled { padding: 10px 0; }
  .navbar__nav, .navbar__cta { display: none; }
  .navbar__toggle { display: flex; }
  .navbar__toggle span { background: var(--white); height: 2.5px; width: 26px; }
  .navbar__mobile { display: flex; }
  .navbar__logo-link { display: none; }

  .navbar__mobile .mobile-close { top: 18px; right: 18px; font-size: 2.4rem; padding: 8px; }
  .navbar__mobile a { font-size: 1.8rem; }
  .navbar__mobile .mobile-cta {
    font-size: 0.8rem !important;
    padding: 14px 32px !important;
    max-width: 90vw;
    white-space: normal;
  }

  /* Hero */
  .hero {
    min-height: 600px;
    align-items: flex-start;
    padding-top: 330px;
    padding-bottom: 0;
  }
  .hero h1 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__content { padding-top: 0; }
  .hero__logo {
    top: 105px;
    width: min(200px, 52vw);
  }

  /* Page hero */
  .page-hero {
    padding-top: 80px;
    align-items: flex-start !important;
    min-height: 0 !important;
  }

  /* Grids to single column */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .route-cards-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .taxi-advantages { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr; }
  .dest-card--wide { grid-column: span 1; aspect-ratio: 16/9; min-height: unset; }
  .dest-card { aspect-ratio: 4/3; }

  /* Inline grids */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  img[style*="height:460px"],
  img[style*="height:420px"],
  img[style*="height:480px"] {
    height: 280px !important;
  }

  /* Strips */
  .strip__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .strip { padding: 48px 0; }

  /* Blog featured article — responsive */
  .blog-featured { grid-template-columns: 1fr !important; gap: 0 !important; }
  .blog-featured__img { height: 260px !important; }

  /* Showcase */
  .showcase__item { width: 85vw; height: 45vh; min-height: 300px; }
  .showcase__scroll { gap: 12px; padding: 0 20px; }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__grid > :nth-child(3) { grid-column: span 1; max-width: 100%; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* Boat detail */
  .boat-detail__gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .boat-detail__gallery .main-photo { height: 240px; }
  .boat-detail__gallery .thumb { height: 160px; }
  .boat-detail__specs { grid-template-columns: 1fr; }

  /* CTA */
  .cta-band { padding: 72px 0; }
  .cta-band__actions { flex-direction: column; }
  .contact-info { flex-direction: column; gap: 12px; }

  /* WhatsApp */
  .whatsapp-float { bottom: 20px; right: 16px; width: 50px; height: 50px; }

  /* Article */
  .article-layout { grid-template-columns: 1fr; }

  /* Taxi */
  .taxi-section__content { max-width: 100% !important; }
  .taxi-section { padding: 60px 0 !important; }

  /* Fleet nav cards */
  .fleet-nav-card__img { height: 180px; }
  .grid-3:has(.fleet-nav-card) { grid-template-columns: 1fr; gap: 16px; }
  .grid-3:has(.activity-card) { grid-template-columns: 1fr; gap: 16px; }

  /* Navbar logo */
  .navbar__logo-img { height: 48px; margin-left: 0; }
  .navbar.scrolled .navbar__logo-img { height: 38px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE <=480px
   ============================================================ */
@media (max-width: 480px) {
  .strip__grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .strip__number { font-size: 2.2rem; }
  .strip__item { padding: 0 12px; }

  .btn { padding: 14px 28px; font-size: 0.78rem; }
  .btn--lg { padding: 16px 32px; font-size: 0.82rem; }

  .section__header { margin-bottom: 48px; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .navbar, .whatsapp-float, .hero__scroll { display: none; }
  .hero { height: auto; padding: 40px 0; }
}

/* ============================================================
   GALLERY GRID (Location page inline)
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  cursor: zoom-in;
  transition: transform 0.4s var(--ease), opacity 0.3s ease;
}
.gallery-grid img:hover { transform: scale(1.03); opacity: 0.92; }

/* Location page specific */
.boat-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-200);
}
.boat-section:last-of-type { border-bottom: none; }

.boat-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.boat-layout.reverse .boat-photos { order: 2; }
.boat-layout.reverse .boat-info   { order: 1; }

.main-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.main-photo-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
  cursor: zoom-in;
}
.main-photo-wrap:hover img { transform: scale(1.04); }

.photo-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(26,26,46,0.85);
  backdrop-filter: blur(8px);
  color: var(--terra-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.specs-table tr { border-bottom: 1px solid var(--gray-200); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 12px 0; font-size: 0.9rem; }
.specs-table td:first-child { color: var(--gray-500); font-weight: 500; width: 45%; }
.specs-table td:last-child { color: var(--charcoal); font-weight: 600; }

@media (max-width: 768px) {
  .boat-layout { grid-template-columns: 1fr !important; gap: 32px !important; }
  .boat-layout.reverse .boat-photos { order: 1; }
  .boat-layout.reverse .boat-info   { order: 2; }
  .main-photo-wrap img { height: 280px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 140px; }
}
