/*
Theme Name: Location Voilier Guadeloupe
Theme URI: https://location-voilier-guadeloupe.fr
Author: Webinstrass
Description: Theme WordPress sur mesure pour location-voilier-guadeloupe.fr.
Version: 1.0.6
Text Domain: location-voilier-guadeloupe
*/

/* =====================================================
   LOCATION VOILIER GUADELOUPE — Styles principaux
   Design maritime premium, sobre, Antilles
   ===================================================== */

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

/* =====================================================
   VARIABLES CSS
   ===================================================== */
:root {
  /* Couleurs primaires */
  --bleu-profond:   #0A3D62;
  --bleu-marine:    #0C2D48;
  --turquoise:      #48CAE4;
  --turquoise-clair:#90E0EF;
  --turquoise-pale: #CAF0F8;

  /* Couleurs neutres */
  --blanc-casse:    #F8F5F0;
  --sable:          #E8DCC8;
  --sable-fonce:    #C9B99A;
  --texte-principal:#1A2B3C;
  --texte-secondaire:#4A5568;
  --texte-leger:    #7A8A9A;
  --bordure:        #DDE4EC;

  /* Couleurs accent */
  --corail:         #E07B54;
  --corail-clair:   #F4A58A;
  --vert-tropical:  #2D7D6A;

  /* Fonds */
  --fond-page:      #FFFFFF;
  --fond-section:   #F8F5F0;
  --fond-marine:    #0A3D62;

  /* Typographies */
  --font-serif:     'Playfair Display', Georgia, serif;
  --font-sans:      'Inter', system-ui, sans-serif;

  /* Espacements */
  --espace-xs:      0.25rem;
  --espace-sm:      0.5rem;
  --espace-md:      1rem;
  --espace-lg:      1.5rem;
  --espace-xl:      2rem;
  --espace-2xl:     3rem;
  --espace-3xl:     4rem;
  --espace-4xl:     6rem;

  /* Largeurs */
  --max-width:      1200px;
  --max-width-text: 720px;

  /* Rayons */
  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      16px;
  --radius-xl:      24px;

  /* Ombres */
  --ombre-sm:       0 1px 3px rgba(10,61,98,.08), 0 1px 2px rgba(10,61,98,.06);
  --ombre-md:       0 4px 6px rgba(10,61,98,.07), 0 2px 4px rgba(10,61,98,.06);
  --ombre-lg:       0 10px 25px rgba(10,61,98,.1), 0 4px 10px rgba(10,61,98,.06);
  --ombre-xl:       0 20px 50px rgba(10,61,98,.15);

  /* Transitions */
  --transition:     0.25s ease;
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--texte-principal);
  background-color: var(--fond-page);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--bleu-profond);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--turquoise); }

ul, ol { list-style: none; }

/* =====================================================
   TYPOGRAPHIE
   ===================================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--bleu-profond);
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: var(--espace-md); color: var(--texte-secondaire); }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--texte-principal); }

.lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--texte-secondaire);
  font-weight: 300;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* =====================================================
   LAYOUT UTILITAIRES
   ===================================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--espace-xl);
}

.container-sm {
  max-width: var(--max-width-text);
  margin: 0 auto;
  padding: 0 var(--espace-xl);
}

.section {
  padding: var(--espace-4xl) 0;
}

.section-sm {
  padding: var(--espace-2xl) 0;
}

.section-fond {
  background-color: var(--fond-section);
}

.section-marine {
  background-color: var(--fond-marine);
  color: var(--blanc-casse);
}

.section-marine h2,
.section-marine h3 {
  color: var(--blanc-casse);
}

.section-marine p {
  color: var(--turquoise-pale);
}

/* =====================================================
   EN-TÊTES DE SECTION
   ===================================================== */
.section-header {
  text-align: center;
  margin-bottom: var(--espace-3xl);
}

.section-header .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--corail);
  margin-bottom: var(--espace-sm);
}

.section-header h2 {
  margin-bottom: var(--espace-md);
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-marine .section-header .label {
  color: var(--turquoise-clair);
}

/* =====================================================
   BOUTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--bleu-profond);
  color: #fff;
  border-color: var(--bleu-profond);
}

.btn-primary:hover {
  background-color: var(--bleu-marine);
  color: #fff;
  border-color: var(--bleu-marine);
  transform: translateY(-2px);
  box-shadow: var(--ombre-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--bleu-profond);
  border-color: var(--bleu-profond);
}

.btn-secondary:hover {
  background-color: var(--bleu-profond);
  color: #fff;
  transform: translateY(-2px);
}

.btn-turquoise {
  background-color: var(--turquoise);
  color: var(--bleu-marine);
  border-color: var(--turquoise);
  font-weight: 600;
}

.btn-turquoise:hover {
  background-color: var(--turquoise-clair);
  color: var(--bleu-marine);
  transform: translateY(-2px);
  box-shadow: var(--ombre-md);
}

.btn-outline-white {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}

.btn-outline-white:hover {
  background-color: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
}

.btn-corail {
  background-color: var(--corail);
  color: #fff;
  border-color: var(--corail);
}

.btn-corail:hover {
  background-color: #c56840;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--ombre-md);
}

.btn-sm {
  padding: 0.5rem 1.125rem;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* =====================================================
   NAVIGATION PRINCIPALE
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bordure);
  box-shadow: var(--ombre-sm);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--espace-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Wordmark logo */
.site-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bleu-profond);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--turquoise);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Navigation desktop */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--texte-principal);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--bleu-profond);
  background-color: var(--turquoise-pale);
}

/* Dropdown */
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--bordure);
  border-radius: var(--radius-md);
  box-shadow: var(--ombre-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}

.dropdown li a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.85rem;
  color: var(--texte-secondaire);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.dropdown li a:hover {
  color: var(--bleu-profond);
  background-color: var(--turquoise-pale);
}

/* CTA header */
.nav-cta {
  margin-left: var(--espace-md);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  background-color: var(--bleu-profond);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: rgba(255,255,255,0.99);
  z-index: 999;
  overflow-y: auto;
  padding: var(--espace-xl);
  border-top: 1px solid var(--bordure);
}

.mobile-menu.is-open { display: block; }

.mobile-menu ul { display: flex; flex-direction: column; gap: 0; }

.mobile-menu ul li a {
  display: block;
  padding: var(--espace-md) 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--texte-principal);
  border-bottom: 1px solid var(--bordure);
}

.mobile-menu ul li a:hover { color: var(--turquoise); }

.mobile-menu-sub {
  padding-left: var(--espace-md);
  background: var(--fond-section);
  border-radius: var(--radius-md);
  margin: 0.25rem 0;
}

.mobile-menu-sub li a {
  font-size: 0.9rem !important;
  color: var(--texte-secondaire) !important;
  padding: 0.6rem 0 !important;
  border-bottom: 1px solid var(--bordure) !important;
}

.mobile-menu .btn {
  margin-top: var(--espace-lg);
  width: 100%;
  justify-content: center;
}

/* =====================================================
   HERO PRINCIPAL
   ===================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,61,98,0.82) 0%,
    rgba(10,61,98,0.55) 50%,
    rgba(10,45,72,0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--espace-4xl) var(--espace-xl);
  max-width: 680px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--turquoise-clair);
  margin-bottom: var(--espace-lg);
}

.hero-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--turquoise);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: var(--espace-lg);
  font-weight: 700;
}

.hero h1 em {
  font-style: italic;
  color: var(--turquoise-clair);
}

.hero .lead {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  margin-bottom: var(--espace-2xl);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--espace-md);
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.7); }
}

/* =====================================================
   HERO PAGES INTERNES (plus compact)
   ===================================================== */
.hero-page {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-page .hero-content {
  max-width: 760px;
  padding: var(--espace-3xl) var(--espace-xl);
}

.hero-page h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

/* =====================================================
   BREADCRUMB
   ===================================================== */
.breadcrumb {
  background: var(--fond-section);
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--bordure);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
  list-style: none;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--espace-xl);
}

.breadcrumb ol li {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.82rem;
  color: var(--texte-leger);
}

.breadcrumb ol li a {
  color: var(--texte-leger);
  transition: color var(--transition);
}

.breadcrumb ol li a:hover { color: var(--bleu-profond); }

.breadcrumb ol li::after {
  content: '/';
  color: var(--sable-fonce);
  margin-left: 0.25rem;
}

.breadcrumb ol li:last-child::after { display: none; }
.breadcrumb ol li:last-child { color: var(--texte-secondaire); font-weight: 500; }

/* =====================================================
   CARTES D'ENTRÉE (Voilier / Catamaran / Croisière)
   ===================================================== */
.entry-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--espace-xl);
}

.entry-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--ombre-lg);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  display: block;
  aspect-ratio: 3/4;
}

.entry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ombre-xl);
}

.entry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.entry-card:hover img { transform: scale(1.04); }

.entry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,61,98,0.9) 0%, rgba(10,61,98,0.3) 50%, transparent 100%);
}

.entry-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--espace-xl);
  color: #fff;
}

.entry-card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--turquoise-clair);
  margin-bottom: 0.5rem;
}

.entry-card-body h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.entry-card-body p {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  margin-bottom: var(--espace-md);
  line-height: 1.5;
}

.entry-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--turquoise-clair);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =====================================================
   CARTES DESTINATION
   ===================================================== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--espace-lg);
}

.destination-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--ombre-md);
  background: #fff;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  display: block;
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ombre-lg);
}

.destination-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.destination-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.destination-card:hover .destination-card-img img { transform: scale(1.05); }

.destination-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(10,61,98,0.85);
  color: var(--turquoise-clair);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
}

.destination-card-body {
  padding: var(--espace-lg);
}

.destination-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--bleu-profond);
}

.destination-card-body p {
  font-size: 0.875rem;
  color: var(--texte-leger);
  margin: 0;
  line-height: 1.5;
}

.destination-card-meta {
  display: flex;
  gap: var(--espace-md);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--bordure);
}

.destination-card-meta span {
  font-size: 0.75rem;
  color: var(--texte-leger);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* =====================================================
   CARTES ARTICLES / CONSEILS
   ===================================================== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--espace-xl);
}

.article-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--ombre-md);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ombre-lg);
}

.article-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-card:hover .article-card-img img { transform: scale(1.04); }

.article-card-body {
  padding: var(--espace-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card-cat {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--corail);
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.article-card-cat:hover { color: var(--bleu-profond); }

.article-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.article-card-body h3 a {
  color: var(--bleu-profond);
}

.article-card-body h3 a:hover { color: var(--turquoise); }

.article-card-body p {
  font-size: 0.875rem;
  color: var(--texte-leger);
  line-height: 1.6;
  flex: 1;
}

.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--espace-md);
  padding-top: var(--espace-md);
  border-top: 1px solid var(--bordure);
}

.article-card-footer time {
  font-size: 0.75rem;
  color: var(--texte-leger);
}

.article-read-more {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bleu-profond);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.article-read-more:hover { color: var(--turquoise); }

/* =====================================================
   BLOC CONSEILS (split alternés)
   ===================================================== */
.conseils-list {
  display: flex;
  flex-direction: column;
  gap: var(--espace-3xl);
}

.conseil-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--espace-3xl);
  align-items: center;
}

.conseil-item.reverse {
  direction: rtl;
}

.conseil-item.reverse > * {
  direction: ltr;
}

.conseil-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--ombre-lg);
  aspect-ratio: 4/3;
}

.conseil-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.conseil-body .label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--corail);
  margin-bottom: var(--espace-sm);
}

.conseil-body h3 {
  font-size: 1.5rem;
  margin-bottom: var(--espace-md);
}

.conseil-body p {
  margin-bottom: var(--espace-lg);
}

/* =====================================================
   STATS / CHIFFRES
   ===================================================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--espace-xl);
}

.stat-item {
  text-align: center;
  padding: var(--espace-xl);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--turquoise-clair);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--turquoise-pale);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =====================================================
   PAGE ARTICLE (long format)
   ===================================================== */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--espace-3xl);
  align-items: start;
}

.article-main { min-width: 0; }

.article-cover-hero {
  min-height: 48vh;
}

.article-cover-hero .hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(10,61,98,0.86) 0%,
    rgba(10,61,98,0.58) 48%,
    rgba(10,45,72,0.34) 100%
  );
}

.article-cover-hero .hero-content {
  max-width: 780px;
}

.article-cover-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--espace-md);
  margin-bottom: var(--espace-lg);
  color: rgba(255,255,255,0.82);
  font-size: 0.84rem;
}

.article-cover-hero .article-meta-cat {
  background: var(--turquoise-pale);
  color: var(--bleu-profond);
}

.article-cover-hero .lead {
  border-left: 3px solid var(--turquoise);
  padding-left: var(--espace-lg);
  font-style: italic;
}

.article-content-section {
  padding-top: var(--espace-3xl);
}

.article-header {
  margin-bottom: var(--espace-2xl);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--espace-md);
  margin-bottom: var(--espace-lg);
  font-size: 0.82rem;
  color: var(--texte-leger);
}

.article-meta-cat {
  display: inline-block;
  background: var(--turquoise-pale);
  color: var(--bleu-profond);
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.article-meta-cat:hover { background: var(--bleu-profond); color: #fff; }

.article-hero-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--espace-2xl);
  box-shadow: var(--ombre-lg);
  aspect-ratio: 16/9;
}

.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-chapo {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--texte-secondaire);
  font-style: italic;
  border-left: 3px solid var(--turquoise);
  padding-left: var(--espace-lg);
  margin-bottom: var(--espace-2xl);
}

/* Sommaire */
.sommaire {
  background: var(--fond-section);
  border: 1px solid var(--bordure);
  border-radius: var(--radius-lg);
  padding: var(--espace-xl);
  margin-bottom: var(--espace-2xl);
}

.sommaire-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bleu-profond);
  margin-bottom: var(--espace-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sommaire ol {
  list-style: decimal;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sommaire ol li a {
  font-size: 0.875rem;
  color: var(--texte-secondaire);
}

.sommaire ol li a:hover { color: var(--bleu-profond); }

/* Corps de l'article */
.article-body {
  font-size: 1.025rem;
  line-height: 1.85;
}

.article-body h2 {
  font-size: 1.65rem;
  margin-top: var(--espace-3xl);
  margin-bottom: var(--espace-lg);
  padding-top: var(--espace-xl);
  border-top: 1px solid var(--bordure);
}

.article-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.article-body h3 {
  font-size: 1.25rem;
  margin-top: var(--espace-xl);
  margin-bottom: var(--espace-md);
  color: var(--bleu-profond);
}

.article-body p { margin-bottom: var(--espace-lg); }

.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin-bottom: var(--espace-lg);
}

.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }

.article-body li { margin-bottom: 0.5rem; color: var(--texte-secondaire); }

.article-body strong { color: var(--texte-principal); }

.article-body a {
  color: var(--bleu-profond);
  text-decoration: underline;
  text-decoration-color: var(--turquoise);
}

.article-body a:hover { color: var(--turquoise); }

/* Encadré pratique */
.encadre {
  background: var(--turquoise-pale);
  border-left: 4px solid var(--turquoise);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--espace-xl);
  margin: var(--espace-xl) 0;
}

.encadre-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bleu-profond);
  margin-bottom: var(--espace-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.encadre p { color: var(--texte-secondaire); margin-bottom: var(--espace-sm); }
.encadre p:last-child { margin-bottom: 0; }

.encadre-corail {
  background: #fff5f0;
  border-left-color: var(--corail);
}

.encadre-corail .encadre-title { color: var(--corail); }

/* Tableau */
.table-wrap { overflow-x: auto; margin: var(--espace-xl) 0; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

thead th {
  background: var(--bleu-profond);
  color: #fff;
  padding: 0.875rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }
thead th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }

tbody tr:nth-child(even) { background: var(--fond-section); }
tbody td { padding: 0.875rem 1rem; border-bottom: 1px solid var(--bordure); color: var(--texte-secondaire); }

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: var(--espace-xl) 0 var(--espace-2xl);
}

.faq-item {
  border-bottom: 1px solid var(--bordure);
}

.faq-item:first-child {
  border-top: 1px solid var(--bordure);
}

.faq-item summary {
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.article-body .faq-question-title,
.faq-question-title {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.45;
  font-weight: 600;
  color: inherit;
}

.faq-question {
  width: 100%;
  appearance: none;
  text-align: left;
  background: none;
  border: none;
  padding: var(--espace-lg) 0;
  font-family: var(--font-serif);
  font-size: inherit;
  line-height: 1.45;
  font-weight: 600;
  color: var(--bleu-profond);
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  align-items: center;
  gap: var(--espace-lg);
  transition: color var(--transition);
}

.faq-question-title {
  display: block;
  min-width: 0;
  text-align: left;
  justify-self: start;
}

.faq-question:hover { color: var(--turquoise); }

.faq-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  justify-self: end;
  border: 2px solid var(--bleu-profond);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
}

.faq-item.is-open .faq-icon,
.faq-item[open] .faq-icon {
  background: var(--bleu-profond);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  max-width: 760px;
  padding: 0 4rem var(--espace-xl) 0;
  color: var(--texte-secondaire);
  line-height: 1.75;
}

.faq-item.is-open .faq-answer,
.faq-item[open] .faq-answer { display: block; }

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Sidebar article */
.article-sidebar { position: sticky; top: 96px; }

.sidebar-card {
  background: var(--fond-section);
  border: 1px solid var(--bordure);
  border-radius: var(--radius-lg);
  padding: var(--espace-xl);
  margin-bottom: var(--espace-xl);
}

.sidebar-card h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--texte-leger);
  margin-bottom: var(--espace-md);
  border-bottom: 1px solid var(--bordure);
  padding-bottom: var(--espace-sm);
}

.sidebar-related li {
  border-bottom: 1px solid var(--bordure);
}

.sidebar-related li:last-child { border-bottom: none; }

.sidebar-related li a {
  display: block;
  padding: 0.625rem 0;
  font-size: 0.875rem;
  color: var(--texte-secondaire);
  line-height: 1.4;
}

.sidebar-related li a:hover { color: var(--bleu-profond); }

/* =====================================================
   ARCHIVE
   ===================================================== */
.archive-header {
  background: var(--fond-section);
  padding: var(--espace-3xl) 0 var(--espace-xl);
  border-bottom: 1px solid var(--bordure);
}

.archive-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--espace-xl);
}

.cat-pill {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1.5px solid var(--bordure);
  color: var(--texte-secondaire);
  background: #fff;
  transition: all var(--transition);
  text-decoration: none;
}

.cat-pill:hover, .cat-pill.active {
  background: var(--bleu-profond);
  border-color: var(--bleu-profond);
  color: #fff;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--espace-xl);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--espace-2xl) 0;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--texte-secondaire);
  border: 1.5px solid var(--bordure);
  transition: all var(--transition);
  text-decoration: none;
}

.page-link:hover, .page-link.active {
  background: var(--bleu-profond);
  border-color: var(--bleu-profond);
  color: #fff;
}

/* =====================================================
   FORMULAIRE CONTACT
   ===================================================== */
.form-group {
  margin-bottom: var(--espace-lg);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--texte-principal);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--bordure);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--texte-principal);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(72,202,228,0.15);
}

.form-control::placeholder { color: var(--texte-leger); }

textarea.form-control { resize: vertical; min-height: 140px; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--bleu-marine);
  color: var(--turquoise-pale);
  padding: var(--espace-4xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--espace-3xl);
  margin-bottom: var(--espace-3xl);
}

.footer-brand .logo-main { color: #fff; }
.footer-brand .logo-sub  { color: var(--turquoise-clair); }

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(202,240,248,0.7);
  margin-top: var(--espace-md);
  margin-bottom: var(--espace-xl);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  color: var(--turquoise-clair);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--turquoise);
  color: var(--bleu-marine);
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--espace-lg);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(202,240,248,0.75);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--turquoise-clair); }

.footer-newsletter p {
  font-size: 0.875rem;
  color: rgba(202,240,248,0.75);
  margin-bottom: var(--espace-md);
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.85rem;
  outline: none;
}

.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }

.footer-newsletter-form input:focus {
  border-color: var(--turquoise);
}

.footer-newsletter-form button {
  padding: 0.625rem 1rem;
  background: var(--turquoise);
  color: var(--bleu-marine);
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.footer-newsletter-form button:hover { background: var(--turquoise-clair); }

/* Footer bas */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--espace-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--espace-md);
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(202,240,248,0.45);
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--espace-lg);
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(202,240,248,0.45);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--turquoise-clair); }

/* =====================================================
   PAGE 404
   ===================================================== */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-404 .num {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  color: var(--turquoise-pale);
  line-height: 1;
  margin-bottom: var(--espace-md);
}

/* =====================================================
   PAGES LÉGALES
   ===================================================== */
.legal-body {
  max-width: 780px;
  margin: 0 auto;
}

.legal-body h2 {
  font-size: 1.35rem;
  margin-top: var(--espace-2xl);
  margin-bottom: var(--espace-md);
  padding-top: var(--espace-xl);
  border-top: 1px solid var(--bordure);
}

.legal-body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }

.legal-body p, .legal-body li { font-size: 0.95rem; color: var(--texte-secondaire); }

.legal-body ul { list-style: disc; padding-left: 1.25rem; margin-bottom: var(--espace-md); }
.legal-body li { margin-bottom: 0.4rem; }

/* =====================================================
   PLAN DU SITE
   ===================================================== */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--espace-2xl);
}

.sitemap-col h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--texte-leger);
  margin-bottom: var(--espace-md);
  padding-bottom: var(--espace-sm);
  border-bottom: 2px solid var(--turquoise-pale);
}

.sitemap-col ul { display: flex; flex-direction: column; gap: 0.4rem; }

.sitemap-col li a {
  font-size: 0.9rem;
  color: var(--texte-secondaire);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sitemap-col li a:hover { color: var(--bleu-profond); }

.seopress-html-sitemap.sitemap-grid {
  display: block;
  max-width: 100%;
}

.seopress-html-sitemap h2,
.seopress-html-sitemap h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--texte-leger);
  margin: var(--espace-2xl) 0 var(--espace-md);
  padding-bottom: var(--espace-sm);
  border-bottom: 2px solid var(--turquoise-pale);
}

.seopress-html-sitemap h2:first-child,
.seopress-html-sitemap h3:first-child {
  margin-top: 0;
}

.seopress-html-sitemap ul {
  column-count: 3;
  column-gap: var(--espace-2xl);
  margin: 0;
  padding: 0;
  list-style: none;
}

.seopress-html-sitemap li {
  break-inside: avoid;
  margin: 0 0 0.55rem;
}

.seopress-html-sitemap li a {
  color: var(--texte-secondaire);
  font-size: 0.95rem;
  line-height: 1.45;
  text-decoration: none;
}

.seopress-html-sitemap li a:hover {
  color: var(--bleu-profond);
}

/* =====================================================
   REVEAL ON SCROLL
   ===================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-on-scroll[data-delay="1"] { transition-delay: 0.1s; }
.reveal-on-scroll[data-delay="2"] { transition-delay: 0.2s; }
.reveal-on-scroll[data-delay="3"] { transition-delay: 0.3s; }
.reveal-on-scroll[data-delay="4"] { transition-delay: 0.4s; }
.reveal-on-scroll[data-delay="5"] { transition-delay: 0.5s; }

/* =====================================================
   SÉPARATEURS DÉCORATIFS
   ===================================================== */
.wave-divider {
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* =====================================================
   TAGS & BADGES
   ===================================================== */
.tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tag-bleu { background: var(--turquoise-pale); color: var(--bleu-profond); }
.tag-corail { background: #fff5f0; color: var(--corail); }
.tag-sable { background: var(--sable); color: var(--bleu-marine); }

/* =====================================================
   CTA BAND
   ===================================================== */
.cta-band {
  padding: var(--espace-4xl) 0;
  background: linear-gradient(135deg, var(--bleu-profond) 0%, var(--bleu-marine) 100%);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(72,202,228,0.12) 0%, transparent 70%);
}

.cta-band .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: var(--espace-md);
}

.cta-band p {
  color: rgba(202,240,248,0.8);
  max-width: 540px;
  margin: 0 auto var(--espace-2xl);
  font-size: 1.05rem;
}

.cta-band .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--espace-md);
  justify-content: center;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .entry-cards { grid-template-columns: 1fr 1fr; }
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .archive-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--espace-xl); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .seopress-html-sitemap ul { column-count: 2; }
}

@media (max-width: 768px) {
  :root { --espace-4xl: 3rem; --espace-3xl: 2.5rem; }

  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .entry-cards { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .seopress-html-sitemap ul { column-count: 1; }
  .conseil-item { grid-template-columns: 1fr; gap: var(--espace-xl); }
  .conseil-item.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .hero-content { max-width: 100%; }
  .article-cover-hero { min-height: 58vh; }
  .article-cover-meta { gap: var(--espace-sm); }
  .faq-question { padding: var(--espace-lg) 0; }
  .faq-icon { width: 32px; height: 32px; font-size: 1.2rem; }
  .faq-answer { padding-right: 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--espace-lg); }
  .container-sm { padding: 0 var(--espace-lg); }
  .nav-inner { padding: 0 var(--espace-lg); }
  .hero-content { padding: var(--espace-2xl) var(--espace-lg); }
  .stats-row { grid-template-columns: 1fr 1fr; gap: var(--espace-md); }
  .stat-number { font-size: 2rem; }
}
