/* ==========================================================================
   FYNELIA TRAVEL — STYLES PRINCIPAUX
   Charte graphique : Navy #163552, Corail #F05A63, Crème #F7F1E9
   Style : Éditorial de prestige, luxe discret, aéré et chaleureux
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Palette de marque Fynelia */
  --navy: #163552;
  --navy-dark: #0D2235;
  --navy-deep: #081724;
  --navy-light: #224B70;
  --navy-subtle: rgba(22, 53, 82, 0.05);

  --coral: #F05A63;
  --coral-hover: #D9454E;
  --coral-light: rgba(240, 90, 99, 0.08);
  --coral-soft: rgba(240, 90, 99, 0.15);

  --cream: #F7F1E9;
  --cream-light: #FCF9F5;
  --cream-card: #FFFFFF;
  --cream-dark: #EADBCC;
  --cream-border: rgba(22, 53, 82, 0.08);

  --wine: #8E2032;
  --gold-accent: #C5A059;

  /* Typographie & Textes */
  --text-primary: #142433;
  --text-secondary: #4A5B6C;
  --text-muted: #748596;
  --text-light: #A0B0BF;
  --text-white: #FFFFFF;

  /* Polices */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Espacements */
  --container-max: 1320px;
  --container-hero: 1440px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-pill: 9999px;

  /* Ombres & Transitions */
  --shadow-subtle: 0 4px 20px rgba(22, 53, 82, 0.04);
  --shadow-card: 0 10px 30px rgba(22, 53, 82, 0.06);
  --shadow-lift: 0 16px 40px rgba(22, 53, 82, 0.12);
  --shadow-modal: 0 25px 60px rgba(8, 23, 36, 0.3);

  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. 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);
  background-color: var(--cream);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

ul, ol {
  list-style: none;
}

/* Scroll Reveal Subtil & Éditorial (14px lift, visible par défaut sans JS) */
.reveal-fade {
  opacity: 1;
  transform: none;
}

.js-ready .reveal-fade {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-fade.is-revealed,
.js-ready .reveal-fade.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHIE ÉDITORIALE & UTILITAIRES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background-color: var(--coral);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px auto;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   4. BOUTONS (CTAs)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
  text-align: center;
  position: relative;
  white-space: nowrap;
}

.btn-coral {
  background-color: var(--coral);
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(22, 53, 82, 0.08);
}

.btn-coral:hover {
  background-color: var(--coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(22, 53, 82, 0.14);
  color: #FFFFFF;
}

.btn-navy {
  background-color: var(--navy);
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(22, 53, 82, 0.08);
}

.btn-navy:hover {
  background-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(22, 53, 82, 0.16);
  color: #FFFFFF;
}

.btn-outline {
  background-color: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-outline:hover {
  background-color: var(--navy);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background-color: #FFFFFF;
  color: var(--navy);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background-color: #1EBE5B;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.35);
  color: #FFFFFF;
}

.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   5. NAVIGATION STICKY (NAVBAR ÉPURÉE & ÉLÉGANTE)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgba(247, 241, 233, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(22, 53, 82, 0.06);
  z-index: 100;
  transition: background-color 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              backdrop-filter 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              -webkit-backdrop-filter 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
  background-color: rgba(247, 241, 233, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(22, 53, 82, 0.08);
  box-shadow: 0 4px 24px rgba(22, 53, 82, 0.04);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled .navbar {
  height: 74px;
}

/* Logo Brand officiel comme élément principal de marque */
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: height 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform var(--transition-fast);
}

.site-header.scrolled .brand-logo-img {
  height: 52px;
}

.nav-brand:hover .brand-logo-img {
  transform: scale(1.02);
}

/* Liens du Menu Desktop */
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.03em;
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background-color: var(--coral);
  transition: width var(--transition-base), left var(--transition-base);
}

.nav-link:hover {
  color: var(--navy-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  left: 0;
}

/* Actions Header (Unique CTA) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-nav-devis {
  padding: 11px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  background-color: var(--coral);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(240, 90, 99, 0.22);
}

.btn-nav-devis:hover {
  background-color: var(--coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 90, 99, 0.32);
}

/* Burger Toggle Mobile */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: transparent;
  gap: 5px;
  z-index: 120;
}

.burger-line {
  width: 24px;
  height: 2px;
  background-color: var(--navy);
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.burger-btn.open .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.open .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-btn.open .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menu Tiroir Mobile */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 86vw;
  background-color: var(--cream);
  box-shadow: -10px 0 40px rgba(13, 34, 53, 0.18);
  z-index: 125;
  padding: 24px 26px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cream-border);
  margin-bottom: 24px;
}

.mobile-drawer-brand {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.drawer-close-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: rgba(22, 53, 82, 0.06);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.drawer-close-btn:hover {
  background-color: var(--coral);
  color: #FFFFFF;
}

.drawer-close-btn svg {
  width: 18px;
  height: 18px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 500;
  display: inline-block;
  padding: 6px 0;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--coral);
  transform: translateX(4px);
}

.mobile-drawer-footer {
  border-top: 1px solid var(--cream-border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-drawer-info {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 34, 53, 0.4);
  backdrop-filter: blur(4px);
  z-index: 112;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION CINÉMATIQUE (IMMERSIVE, ÉDITORIALE, SANS BOÎTE CARTON)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding: 16px 0 72px 0;
  overflow: hidden;
}

.hero-frame {
  position: relative;
  width: 100%;
  max-width: var(--container-hero);
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(13, 34, 53, 0.07);
  min-height: calc(90vh - 100px);
  max-height: 840px;
  display: flex;
  align-items: center;
}

/* Image Héroïque dominante */
.hero-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-backdrop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  transform: scale(1.01);
  animation: heroSubtleScale 6.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform;
}

@keyframes heroSubtleScale {
  from { transform: scale(1.035); }
  to { transform: scale(1.01); }
}

/* Voile d'ombrage éditorial doux et naturel (pas de carte rectangulaire) */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(247, 241, 233, 0.97) 0%,
    rgba(247, 241, 233, 0.92) 34%,
    rgba(247, 241, 233, 0.65) 50%,
    rgba(247, 241, 233, 0.2) 68%,
    rgba(247, 241, 233, 0) 84%
  );
  pointer-events: none;
}

/* Contenu Éditorial en pleine respiration */
.hero-content-container {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-left: clamp(24px, 5vw, 64px);
  padding-right: clamp(24px, 5vw, 64px);
}

.hero-editorial-wrap {
  max-width: 620px;
  padding: 48px 0;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--coral);
  margin-bottom: 22px;
  animation: heroFadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
  will-change: opacity, transform;
}

.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background-color: var(--coral);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4.6vw, 4.1rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
  will-change: opacity, transform;
}

.hero-headline em {
  font-style: italic;
  font-weight: 400;
  font-family: var(--font-serif);
  color: var(--navy-dark);
}

.hero-description {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 38px;
  font-weight: 400;
  max-width: 520px;
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.30s both;
  will-change: opacity, transform;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.42s both;
  will-change: opacity, transform;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition-base);
  white-space: nowrap;
}

.btn-hero-outline:hover {
  background-color: var(--navy);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(22, 53, 82, 0.2);
}

/* --------------------------------------------------------------------------
   8. SERVICES PREVIEW (NOTRE SAVOIR-FAIRE)
   -------------------------------------------------------------------------- */
.services-section {
  padding: 104px 0 96px 0;
  background-color: var(--cream);
  position: relative;
}

.services-header {
  margin-bottom: 64px;
}

.services-header .section-title em {
  font-style: italic;
  font-weight: 400;
  font-family: var(--font-serif);
  color: var(--navy-dark);
}

/* Grille Éditoriale Architecturale — Lignes fines, pas de cartes lourdes */
.services-editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(22, 53, 82, 0.12);
  border-bottom: 1px solid rgba(22, 53, 82, 0.12);
  background-color: transparent;
}

.service-item {
  padding: 52px 34px 56px 34px;
  border-right: 1px solid rgba(22, 53, 82, 0.09);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  background-color: transparent;
}

.service-item:last-child {
  border-right: none;
}

/* Décalage temporel subtil pour la révélation des 4 services */
.services-editorial-grid .service-item:nth-child(1) { transition-delay: 0.04s; }
.services-editorial-grid .service-item:nth-child(2) { transition-delay: 0.12s; }
.services-editorial-grid .service-item:nth-child(3) { transition-delay: 0.20s; }
.services-editorial-grid .service-item:nth-child(4) { transition-delay: 0.28s; }

@media (hover: hover) and (min-width: 769px) {
  .service-item:hover {
    background-color: rgba(255, 255, 255, 0.65);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(22, 53, 82, 0.04);
    z-index: 2;
  }
}

.service-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.service-number {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--coral);
}

.service-icon {
  width: 40px;
  height: 40px;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-base), transform var(--transition-base);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-item:hover .service-icon {
  color: var(--coral);
  transform: translateY(-2px);
}

.service-item-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
  transition: color var(--transition-fast);
}

.service-item:hover .service-item-title {
  color: var(--navy-dark);
}

.service-item-desc {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
  flex-grow: 1;
}

.service-item-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--coral);
  transition: width var(--transition-base);
}

.service-item:hover .service-item-line {
  width: 100%;
}

/* --------------------------------------------------------------------------
   9. DESTINATIONS (COLLECTION ÉDITORIALE HAUT DE GAMME)
   -------------------------------------------------------------------------- */
.destinations-section {
  padding: 104px 0;
  background-color: var(--cream);
}

.destinations-header {
  margin-bottom: 56px;
}

.destinations-showcase {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-template-rows: 290px 290px;
  gap: 24px;
}

.destination-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(22, 53, 82, 0.08);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--navy-dark);
}

/* Grille asymétrique éditoriale */
.dest-featured {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.dest-wide {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
}

.dest-compact:nth-of-type(3) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.dest-compact:nth-of-type(4) {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

/* Image et Scrim */
.dest-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Décalage temporel subtil pour la révélation de la collection */
.dest-featured { transition-delay: 0.04s; }
.dest-wide { transition-delay: 0.12s; }
.dest-compact:nth-of-type(3) { transition-delay: 0.20s; }
.dest-compact:nth-of-type(4) { transition-delay: 0.28s; }

.dest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.destination-item:hover .dest-img {
  transform: scale(1.035);
}

.dest-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 34, 53, 0.04) 0%,
    rgba(13, 34, 53, 0.25) 45%,
    rgba(13, 34, 53, 0.75) 80%,
    rgba(13, 34, 53, 0.92) 100%
  );
  transition: opacity var(--transition-base);
}

.destination-item:hover .dest-scrim {
  background: linear-gradient(
    180deg,
    rgba(13, 34, 53, 0.02) 0%,
    rgba(13, 34, 53, 0.2) 40%,
    rgba(13, 34, 53, 0.8) 75%,
    rgba(13, 34, 53, 0.96) 100%
  );
}

/* Contenu textuel épuré */
.dest-content {
  position: relative;
  z-index: 2;
  padding: 30px 28px;
  color: #FFFFFF;
}

.dest-featured .dest-content {
  padding: 38px 34px;
}

.dest-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 8px;
}

.dest-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}

.dest-featured .dest-title {
  font-size: 2.25rem;
  margin-bottom: 14px;
}

.dest-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
  max-width: 440px;
}

.dest-featured .dest-desc {
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.dest-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: color var(--transition-fast);
}

.dest-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-item:hover .dest-cta {
  color: var(--coral);
}

.destination-item:hover .dest-cta svg {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   10. SECTION APPEL FINAL (FINAL CTA)
   -------------------------------------------------------------------------- */
.final-cta-section {
  padding: 120px 0;
  background-color: var(--navy);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(240, 90, 99, 0.12) 0%, rgba(22, 53, 82, 0) 70%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.final-cta-eyebrow {
  display: inline-block;
  color: var(--coral);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.final-cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  font-weight: 500;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.final-cta-subheadline {
  font-family: var(--font-sans);
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(247, 241, 233, 0.82);
  margin: 0 auto 38px;
  max-width: 620px;
}

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

.btn-primary-cta {
  background-color: var(--coral);
  color: #FFFFFF;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 10px rgba(8, 23, 36, 0.15);
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary-cta:hover {
  background-color: var(--coral-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(8, 23, 36, 0.28);
}

.btn-primary-cta .btn-icon {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-cta:hover .btn-icon {
  transform: translateX(3px);
}

.btn-secondary-cta {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247, 241, 233, 0.32);
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.btn-secondary-cta:hover {
  border-color: var(--cream);
  background-color: rgba(247, 241, 233, 0.08);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-secondary-cta svg {
  width: 15px;
  height: 15px;
  transition: transform var(--transition-fast);
}

.btn-secondary-cta:hover svg {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   11. PIED DE PAGE (FOOTER ÉPURÉ)
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--navy-dark);
  color: rgba(247, 241, 233, 0.75);
  padding: 80px 0 40px 0;
  font-size: 0.9rem;
  border-top: 1px solid rgba(247, 241, 233, 0.08);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(247, 241, 233, 0.08);
}

.footer-brand-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.footer-brand-desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(247, 241, 233, 0.7);
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(247, 241, 233, 0.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: rgba(247, 241, 233, 0.06);
  border: 1px solid rgba(247, 241, 233, 0.1);
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.footer-social-link:hover {
  background-color: var(--coral);
  border-color: var(--coral);
  color: #FFFFFF;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--coral);
  margin-bottom: 22px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: rgba(247, 241, 233, 0.72);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-nav a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-info-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.88rem;
}

.info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(247, 241, 233, 0.5);
}

.info-value {
  color: rgba(247, 241, 233, 0.9);
}

.placeholder-text {
  color: rgba(247, 241, 233, 0.5);
  font-style: italic;
}

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(247, 241, 233, 0.45);
}

.footer-bottom-city {
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   12. MODAL DE DEMANDE DE DEVIS (WHATSAPP SANS BACKEND)
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 34, 53, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-card {
  background-color: var(--cream);
  width: 100%;
  max-width: 580px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(22, 53, 82, 0.12);
  box-shadow: var(--shadow-modal);
  padding: 42px 40px;
  position: relative;
  opacity: 0;
  transform: scale(0.97) translateY(12px);
  transition: opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1), transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-card {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background-color: rgba(22, 53, 82, 0.06);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.modal-close-btn:hover {
  background-color: var(--coral);
  color: #FFFFFF;
}

.modal-close-btn svg {
  width: 18px;
  height: 18px;
}

.modal-header {
  margin-bottom: 26px;
  padding-right: 32px;
}

.modal-eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 8px;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  background-color: #FFFFFF;
  border: 1px solid rgba(22, 53, 82, 0.14);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(22, 53, 82, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-modal-submit {
  width: 100%;
  margin-top: 12px;
  padding: 14px 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background-color: var(--coral);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(22, 53, 82, 0.08);
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-modal-submit:hover {
  background-color: var(--coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(22, 53, 82, 0.14);
}

.btn-modal-submit .btn-icon {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-modal-submit:hover .btn-icon {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   13. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */

/* Tablettes et écrans intermédiaires (max 1024px) */
@media (max-width: 1024px) {
  .services-editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item:nth-child(2) {
    border-right: none;
  }

  .service-item:nth-child(1),
  .service-item:nth-child(2) {
    border-bottom: 1px solid rgba(22, 53, 82, 0.09);
  }

  .destinations-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }

  .dest-featured {
    grid-column: 1 / 3;
    min-height: 420px;
  }

  .dest-wide {
    grid-column: 1 / 3;
    min-height: 320px;
  }

  .dest-compact:nth-of-type(3) {
    grid-column: 1 / 2;
    min-height: 290px;
  }

  .dest-compact:nth-of-type(4) {
    grid-column: 2 / 3;
    min-height: 290px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-contact-col {
    grid-column: 1 / -1;
  }

  .hero-scrim {
    background: linear-gradient(
      90deg,
      rgba(247, 241, 233, 0.97) 0%,
      rgba(247, 241, 233, 0.94) 44%,
      rgba(247, 241, 233, 0.7) 68%,
      rgba(247, 241, 233, 0.2) 90%
    );
  }

  .hero-editorial-wrap {
    max-width: 520px;
  }
}

/* Tablettes & Mobiles (max 768px) */
@media (max-width: 768px) {
  .navbar {
    height: 72px;
  }

  .brand-logo-img {
    height: 48px;
  }

  .nav-links,
  .btn-nav-devis {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .hero-frame {
    min-height: 540px;
    border-radius: 0;
    margin: 0;
    width: 100%;
    align-items: flex-end;
  }

  .hero-section {
    padding-top: 0;
    padding-bottom: 40px;
  }

  .hero-backdrop-img {
    object-position: 65% top;
  }

  .hero-scrim {
    background: linear-gradient(
      180deg,
      rgba(247, 241, 233, 0.2) 0%,
      rgba(247, 241, 233, 0.75) 30%,
      rgba(247, 241, 233, 0.96) 55%,
      rgba(247, 241, 233, 1) 100%
    );
  }

  .hero-content-container {
    padding: 24px 20px 32px 20px;
  }

  .hero-editorial-wrap {
    padding: 0;
    max-width: 100%;
  }

  .hero-headline {
    font-size: clamp(2rem, 7.5vw, 2.35rem);
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 14px;
  }

  .hero-description {
    font-size: 1.02rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .btn,
  .hero-actions .btn-hero-outline {
    width: 100%;
    min-height: 48px;
  }

  .services-section {
    padding: 64px 0 56px 0;
  }

  .services-header {
    margin-bottom: 40px;
  }

  .services-editorial-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    border-right: none;
    border-bottom: 1px solid rgba(22, 53, 82, 0.09);
    padding: 36px 14px 40px 14px;
  }

  .service-item:last-child {
    border-bottom: none;
  }

  .destinations-section {
    padding: 64px 0 56px 0;
  }

  .destinations-header {
    margin-bottom: 36px;
  }

  .destinations-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 18px;
  }

  .dest-featured,
  .dest-wide,
  .dest-compact:nth-of-type(3),
  .dest-compact:nth-of-type(4) {
    grid-column: 1 / 2;
  }

  .dest-featured {
    min-height: 390px;
  }

  .dest-wide,
  .dest-compact {
    min-height: 275px;
  }

  .dest-content,
  .dest-featured .dest-content {
    padding: 24px 20px;
  }

  .dest-title,
  .dest-featured .dest-title {
    font-size: 1.65rem;
  }

  .final-cta-section {
    padding: 80px 0;
  }

  .final-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .final-cta-actions .btn-primary-cta,
  .final-cta-actions .btn-secondary-cta {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-control {
    font-size: 16px; /* Empêche l'auto-zoom iOS Safari */
    min-height: 48px;
  }

  .btn-modal-submit {
    min-height: 48px;
  }

  .modal-card {
    padding: 32px 20px;
  }
}

/* Très petits écrans & Mobiles compacts (375px, 390px, 430px) */
@media (max-width: 480px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .navbar {
    height: 66px;
  }

  .brand-logo-img {
    height: 44px;
  }

  .hero-content-container {
    padding: 20px 18px 28px 18px;
  }

  .hero-headline {
    font-size: clamp(1.85rem, 8vw, 2.15rem);
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .services-section {
    padding: 56px 0 48px 0;
  }

  .services-header {
    margin-bottom: 34px;
  }

  .service-item {
    padding: 28px 6px 30px 6px;
  }

  .destinations-section {
    padding: 56px 0 48px 0;
  }

  .dest-featured {
    min-height: 370px;
  }

  .dest-wide,
  .dest-compact {
    min-height: 260px;
  }

  .dest-content,
  .dest-featured .dest-content {
    padding: 20px 16px;
  }

  .dest-title {
    font-size: 1.45rem;
  }

  .dest-featured .dest-title {
    font-size: 1.75rem;
  }

  .final-cta-section {
    padding: 68px 0;
  }

  .final-cta-headline {
    font-size: clamp(1.85rem, 7vw, 2.2rem);
  }

  .modal-card {
    padding: 28px 16px 24px 16px;
    max-height: calc(100vh - 28px);
  }

  .modal-header {
    margin-bottom: 20px;
    padding-right: 36px;
  }

  .modal-title {
    font-size: 1.55rem;
  }
}

/* Accessibilité : Désactivation des animations si demandée par l'utilisateur */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-fade,
  .js-ready .reveal-fade,
  .js-ready .reveal-fade.is-revealed {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-backdrop-img {
    transform: none !important;
    animation: none !important;
  }

  .hero-eyebrow,
  .hero-headline,
  .hero-description,
  .hero-actions {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .modal-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
