/* ep-escapade.css — section « Envie d'ailleurs ? » (migrée vers /inspiration) */
.escapade-section {
  background: #F7F6F1;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}
.escapade-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.escapade-header {
  text-align: center;
  margin-bottom: 56px;
}
.escapade-card {
  background: #FFFFFF;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(12, 31, 61, 0.04), 0 30px 80px rgba(12, 31, 61, 0.10);
  border: 1px solid rgba(12, 31, 61, 0.06);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 480px;
  position: relative;
}
.escapade-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  transition: background 0.5s ease;
}
.escapade-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4) 0%, transparent 50%);
  pointer-events: none;
}
.escapade-illustration {
  position: relative;
  width: 280px;
  height: 280px;
  z-index: 2;
  animation: illuFade 0.6s ease forwards;
}
.escapade-illustration svg {
  width: 100%;
  height: 100%;
  display: block;
}
.escapade-badge {
  position: absolute;
  top: 32px;
  left: 32px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0C1F3D;
  font-weight: 600;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
}
.escapade-badge svg {
  width: 12px;
  height: 12px;
  color: #1E90FF;
}
.escapade-content {
  padding: 56px 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.escapade-eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #8A8678;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}
.escapade-title {
  font-family: 'Instrument Serif', serif;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 400;
  color: #0C1F3D;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.escapade-title em {
  font-style: italic;
}
.escapade-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #4A5568;
  margin-bottom: 28px;
}
.escapade-body em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: #0C1F3D;
  font-size: 17px;
}
.escapade-infos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(12, 31, 61, 0.08);
  border-bottom: 1px solid rgba(12, 31, 61, 0.08);
  margin-bottom: 28px;
}
.escapade-info-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8A8678;
  font-weight: 600;
  margin-bottom: 4px;
}
.escapade-info-value {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0C1F3D;
}
.escapade-info-value.price {
  color: #1E90FF;
}
.escapade-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.escapade-cta {
  background: #0C1F3D;
  color: #FFFFFF;
  border: none;
  border-radius: 14px;
  padding: 15px 20px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s, transform 0.15s;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.escapade-cta:hover {
  transform: translateY(-1px);
}
.escapade-cta svg {
  width: 14px;
  height: 14px;
}
.escapade-cta-primary {
  background: #0C1F3D;
  color: #FFFFFF;
}
.escapade-cta-primary:hover {
  background: #1a3057;
}
.escapade-cta-secondary {
  background: #FFFFFF;
  color: #0C1F3D;
  border: 1px solid rgba(12, 31, 61, 0.15);
}
.escapade-cta-secondary:hover {
  background: #F7F6F1;
  border-color: #1E90FF;
  color: #1E90FF;
}
.escapade-shuffle {
  background: transparent;
  border: none;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  color: #8A8678;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  margin: 0 auto;
  align-self: center;
}
.escapade-shuffle em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: #0C1F3D;
}
.escapade-shuffle:hover {
  color: #0C1F3D;
}
.escapade-shuffle:hover em {
  color: #1E90FF;
}
.escapade-shuffle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.4s ease;
}
.escapade-shuffle:hover svg {
  transform: rotate(180deg);
  color: #1E90FF;
}
.escapade-card {
    grid-template-columns: 1fr;
  }
.escapade-visual {
    padding: 40px 20px;
    min-height: 280px;
  }
.escapade-illustration {
    width: 200px;
    height: 200px;
  }
.escapade-content {
    padding: 32px 28px 32px;
  }
.escapade-title {
    font-size: 32px;
  }
.escapade-infos {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
.escapade-section {
    padding: 56px 20px;
  }
.escapade-card {
    border-radius: 24px;
  }
.escapade-badge {
    top: 20px;
    left: 20px;
    padding: 6px 12px;
    font-size: 10px;
  }
.escapade-visual {
    padding: 32px 20px;
    min-height: 240px;
  }
.escapade-illustration {
    width: 170px;
    height: 170px;
  }
.escapade-content {
    padding: 28px 24px;
  }
.escapade-title {
    font-size: 28px;
    margin-bottom: 16px;
  }
.escapade-infos {
    margin-bottom: 22px;
    padding: 16px 0;
  }
.escapade-info-value {
    font-size: 13px;
  }
.escapade-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }
.escapade-shuffle {
    width: 100%;
    justify-content: center;
  }
