/* ════════════════════════════════════════════════
   home.css — Styles spécifiques à la page d'accueil
   ════════════════════════════════════════════════ */
    /* ── HERO SLIDER ── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 650px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0 3rem 5rem;
      overflow: hidden;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transform: scale(1.05);
      transition: opacity 1.2s ease, transform 8s ease;
      z-index: 0;
    }

    .hero-slide::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(20, 14, 10, 0.85) 0%, rgba(20, 14, 10, 0.15) 55%, rgba(20, 14, 10, 0.28) 100%);
    }

    .hero-slide.active {
      opacity: 1;
      transform: scale(1);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 10;
      max-width: 720px;
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.9s ease 0.3s, transform 0.9s ease 0.3s;
    }

    .hero-content.visible {
      opacity: 1;
      transform: none;
    }

    .hero-text {
      display: none;
    }

    .hero-text.active {
      display: block;
      animation: fadeInUp 0.8s ease forwards;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(16px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-eyebrow {
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 1rem;
    }

    h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 1.4rem;
    }

    h1 em {
      font-style: italic;
      color: var(--gold-light);
    }

    .hero-sub {
      font-size: 1rem;
      color: rgba(253, 250, 245, 0.78);
      max-width: 520px;
      margin-bottom: 2.2rem;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      align-items: center;
    }

    /* ── SLIDER NAVIGATION ── */
    .slider-nav {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.6rem;
      z-index: 10;
    }

    .slider-dot {
      width: 28px;
      height: 2px;
      background: rgba(253, 250, 245, 0.35);
      border: none;
      cursor: pointer;
      transition: background 0.3s, width 0.3s;
      padding: 0;
    }

    .slider-dot.active {
      background: var(--gold-light);
      width: 48px;
    }

    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background: rgba(253, 250, 245, 0.1);
      border: 1px solid rgba(253, 250, 245, 0.25);
      color: var(--white);
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.2rem;
      transition: background 0.3s;
      backdrop-filter: blur(4px);
    }

    .slider-arrow:hover {
      background: rgba(200, 146, 42, 0.5);
      border-color: var(--gold);
    }

    .slider-arrow.prev {
      left: 2rem;
    }

    .slider-arrow.next {
      right: 2rem;
    }

    .slider-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 2px;
      background: var(--gold);
      z-index: 10;
      width: 0%;
    }

    .btn-ghost-white {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: rgba(253, 250, 245, 0.85);
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-decoration: none;
      padding-bottom: 2px;
      border-bottom: 1px solid rgba(253, 250, 245, 0.35);
      transition: color 0.3s, border-color 0.3s;
    }

    .btn-ghost-white:hover {
      color: var(--gold-light);
      border-color: var(--gold-light);
    }

    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      right: 3rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(253, 250, 245, 0.5);
    }

    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(253, 250, 245, 0.5), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {

      0%,
      100% {
        opacity: .5;
        transform: scaleY(1)
      }

      50% {
        opacity: 1;
        transform: scaleY(1.1)
      }
    }

    /* ── STATS ── */
    .stats-bar {
      background: var(--dark);
      display: flex;
      justify-content: center;
    }

    .stat {
      flex: 1;
      max-width: 220px;
      text-align: center;
      padding: 1.8rem 1rem;
      border-right: 1px solid rgba(255, 255, 255, 0.07);
    }

    .stat:last-child {
      border-right: none;
    }

    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 300;
      color: var(--gold-light);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(212, 184, 150, 0.6);
      margin-top: 0.4rem;
    }

    /* ── SECTIONS ── */
    section {
      padding: 6rem 3rem;
    }

    /* ── INTRO ── */
    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .intro-img-wrap {
      position: relative;
    }

    .intro-img-wrap img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      display: block;
    }

    .intro-img-badge {
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      background: var(--gold);
      color: var(--dark);
      padding: 1.2rem 1.4rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.95rem;
      font-weight: 600;
      line-height: 1.3;
      text-align: center;
    }

    .intro-text p {
      color: var(--text-muted);
      margin-bottom: 1.2rem;
      font-size: 0.95rem;
    }

    .intro-highlights {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      margin: 2rem 0;
    }

    .highlight-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .highlight-icon {
      width: 32px;
      height: 32px;
      min-width: 32px;
      border: 1px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      color: var(--gold);
      margin-top: 0.1rem;
    }

    .highlight-text strong {
      display: block;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--dark);
      margin-bottom: 0.1rem;
    }

    .highlight-text span {
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    /* ── ACTIVITÉS ── */
    .activites {
      background: var(--white);
    }

    .activites-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 3.5rem;
    }

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

    .activite-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      text-decoration: none;
      display: block;
    }

    .activite-card img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }

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

    .activite-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(20, 14, 10, 0.85) 0%, rgba(20, 14, 10, 0.1) 55%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.8rem;
      transition: background 0.4s;
    }

    .activite-card:hover .activite-overlay {
      background: linear-gradient(to top, rgba(20, 14, 10, 0.92) 0%, rgba(20, 14, 10, 0.25) 55%);
    }

    .activite-tag {
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 0.5rem;
    }

    .activite-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 300;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 0.5rem;
    }

    .activite-info {
      font-size: 0.78rem;
      color: rgba(212, 184, 150, 0.75);
    }

    .activite-arrow {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      width: 36px;
      height: 36px;
      border: 1px solid rgba(253, 250, 245, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1rem;
      opacity: 0;
      transition: opacity 0.3s, background 0.3s;
    }

    .activite-card:hover .activite-arrow {
      opacity: 1;
      background: var(--gold);
      border-color: var(--gold);
    }

    .activite-card-wide {
      grid-column: span 2;
    }

    .activite-card-wide img {
      aspect-ratio: 16/9;
    }

    /* ── VOYAGES PHARES ── */
    .voyages-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .voyage-card {
      display: grid;
      grid-template-columns: 180px 1fr;
      background: var(--white);
      text-decoration: none;
      overflow: hidden;
      transition: box-shadow 0.3s;
    }

    .voyage-card:hover {
      box-shadow: 0 8px 32px rgba(92, 61, 46, 0.12);
    }

    .voyage-card img {
      width: 180px;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s;
    }

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

    .voyage-body {
      padding: 1.5rem;
    }

    .voyage-tags {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 0.8rem;
      flex-wrap: wrap;
    }

    .voyage-tag {
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.25rem 0.6rem;
      background: var(--sand-light);
      color: var(--brown);
      font-weight: 500;
    }

    .voyage-tag.depart {
      background: rgba(200, 146, 42, 0.15);
      color: var(--gold);
    }

    .voyage-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 0.5rem;
      line-height: 1.3;
    }

    .voyage-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
      line-height: 1.6;
    }

    .voyage-meta {
      display: flex;
      gap: 1.2rem;
      padding-top: 0.8rem;
      border-top: 1px solid var(--sand-light);
    }

    .voyage-meta-item {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .voyage-meta-item strong {
      display: block;
      font-size: 1rem;
      color: var(--dark);
      font-weight: 500;
    }

    /* ── POURQUOI NOUS ── */
    .pourquoi {
      background: var(--dark);
    }

    .pourquoi h2 {
      color: var(--white);
    }

    .pourquoi h2 em {
      color: var(--gold-light);
    }

    .pourquoi .lead {
      color: rgba(212, 184, 150, 0.7);
    }

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

    .avantage {
      border-top: 1px solid rgba(200, 146, 42, 0.3);
      padding-top: 1.5rem;
    }

    .avantage-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem;
      font-weight: 300;
      color: rgba(200, 146, 42, 0.25);
      line-height: 1;
      margin-bottom: 1rem;
    }

    .avantage-title {
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--sand-light);
      margin-bottom: 0.6rem;
    }

    .avantage-text {
      font-size: 0.82rem;
      color: rgba(212, 184, 150, 0.55);
      line-height: 1.7;
    }

    /* ── TÉMOIGNAGE ── */
    .temoignage-wrap {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 5rem;
      align-items: center;
    }

    .temoignage-img img {
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
    }

    blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.3rem, 2.5vw, 1.9rem);
      font-weight: 300;
      font-style: italic;
      color: var(--dark);
      line-height: 1.5;
      margin-bottom: 2rem;
    }

    blockquote::before {
      content: '«';
      font-size: 4rem;
      line-height: 0;
      color: var(--gold);
      vertical-align: -0.5rem;
      margin-right: 0.3rem;
    }

    .stars {
      color: var(--gold);
      font-size: 0.85rem;
      margin-bottom: 0.2rem;
    }

    .author-name {
      font-weight: 500;
      font-size: 0.88rem;
    }

    .author-trip {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    /* ── DESTINATION ── */
    .destination {
      background: var(--sand-light);
    }

    .destination-grid {
      display: grid;
      grid-template-columns: 3fr 2fr;
      gap: 4rem;
      align-items: center;
    }

    .destination-text p {
      color: var(--text-muted);
      margin-bottom: 1rem;
      font-size: 0.95rem;
    }

    .region-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin-top: 2rem;
    }

    .region-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.85rem 1rem;
      background: var(--white);
      font-size: 0.82rem;
      color: var(--dark);
      text-decoration: none;
      transition: background 0.3s;
    }

    .region-item:hover {
      background: var(--cream);
    }

    .destination-aside {
      background: var(--dark);
      padding: 2.5rem;
      color: var(--sand-light);
    }

    .aside-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 300;
      color: var(--gold-light);
      margin-bottom: 1.5rem;
    }

    .info-row {
      display: flex;
      justify-content: space-between;
      padding: 0.75rem 0;
      border-bottom: 1px solid rgba(212, 184, 150, 0.12);
      font-size: 0.82rem;
    }

    .info-row:last-of-type {
      border-bottom: none;
    }

    .info-label {
      color: rgba(212, 184, 150, 0.55);
    }

    .info-val {
      color: var(--sand-light);
      text-align: right;
    }

    /* ── CTA FINAL ── */
    .cta-section {
      background: var(--rust);
      text-align: center;
      padding: 5rem 3rem;
    }

    .cta-section h2 {
      color: var(--white);
      margin-bottom: 1rem;
    }

    .cta-section h2 em {
      color: var(--gold-light);
    }

    .cta-section p {
      color: rgba(253, 250, 245, 0.75);
      max-width: 500px;
      margin: 0 auto 2.5rem;
    }

    .cta-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-white {
      display: inline-block;
      background: var(--white);
      color: var(--rust);
      padding: 0.9rem 2.2rem;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.3s, transform 0.2s;
    }

    .btn-white:hover {
      background: var(--cream);
      transform: translateY(-2px);
    }

    .btn-outline-white {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: rgba(253, 250, 245, 0.85);
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid rgba(253, 250, 245, 0.4);
      padding: 0.9rem 2rem;
      transition: border-color 0.3s, color 0.3s;
    }

    .btn-outline-white:hover {
      border-color: var(--white);
      color: var(--white);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .activites-grid {
        grid-template-columns: 1fr 1fr;
      }

      .activite-card-wide {
        grid-column: span 2;
      }

      .pourquoi-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 4rem 1.5rem;
      }

      .hero {
        padding: 0 1.5rem 4rem;
      }

      .intro-grid,
      .temoignage-wrap,
      .destination-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .intro-img-badge {
        right: 0;
        bottom: -1rem;
      }

      .activites-grid {
        grid-template-columns: 1fr;
      }

      .activite-card-wide {
        grid-column: span 1;
      }

      .activite-card-wide img {
        aspect-ratio: 4/3;
      }

      .voyages-grid {
        grid-template-columns: 1fr;
      }

      .voyage-card {
        grid-template-columns: 1fr;
      }

      .voyage-card img {
        width: 100%;
        height: 200px;
      }

      .pourquoi-grid {
        grid-template-columns: 1fr 1fr;
      }

      .stats-bar {
        flex-wrap: wrap;
      }

      .stat {
        min-width: 50%;
      }

      .hero-scroll {
        display: none;
      }
    }